c# 学习
文章平均质量分 74
Maggie
一瓶子不满,半瓶子晃。<iframe src="/uploads/guitar/google-guitar.htm" height="340px" width="660px" style="overflow:hidden" frameborder="0" ></iframe>
展开
-
Inrie(洪晓军)
Inrie(洪晓军) Wake up every day with a feeling of passion for the difference technology will make in our life. 博客园 首页 新文章 新随笔 订阅 管理 联系 -->posts - 50, comments原创 2008-07-14 13:31:00 · 992 阅读 · 0 评论 -
读取xml 文件
using System;using System.Collections.Generic;using System.Text;using System.Windows.Forms;using System.Drawing;using System.Collections;using System.Xml;using System.IO;using System.Reflection;name原创 2008-06-05 07:50:00 · 524 阅读 · 0 评论 -
动态创建的按钮 以及 他们的事件
public partial class Form1 : Form { Button myButton = new Button(); public Form1() { InitializeComponent(); //////////////////////////////原创 2008-06-02 10:06:00 · 803 阅读 · 0 评论 -
使用 params 数组
使用 params 数组using System;using System.Collections.Generic;using System.Text;namespace ConsoleApplication1{ class App { //第一个参数必须是整型,但后面的参数个数是可变的 //而且由于定义的是objec原创 2008-05-26 13:10:00 · 1463 阅读 · 0 评论 -
使用数组示例
namespace Cards{ class Game { public Hand North() { return north; } public Hand South() { return south; } public Hand West() { return west; } public Hand East() { return east;原创 2008-05-23 07:54:00 · 651 阅读 · 0 评论 -
ref and out and param
浅谈C#当中的out关键字2007/04/25 12:23 与ref关键字一样,out关键字也是按引用来传递的. 示例演示了out关键字的使用方法,其功能是获取数组中的最大值和最大值的索引 using System;原创 2008-05-26 19:28:00 · 556 阅读 · 0 评论 -
property(属性)
partial class Form1 : Form { public Form1() { InitializeComponent(); resize(); } private void resize() { // to do /原创 2008-05-24 13:32:00 · 414 阅读 · 0 评论 -
利用数组,过滤非法字符,在foreach循环检查输入
利用数组,过滤非法字符,在foreach循环检查输入 char[] guolv ={ };agen:Console.WriteLine("输入你的密码!");string mystr = Console.ReadLine();string[] mystr2 = mystr.Split(guolv)原创 2008-05-26 19:36:00 · 791 阅读 · 0 评论 -
委派过程
声明 一个委派delegate void stopMachineryDelegate();// 可以带参数定义好后可以创建一个实例class Controller{ delegate void stopMachineryDelegate(); 。。。。 public Contorller() { this.stopMachinery+=f原创 2008-05-25 07:24:00 · 418 阅读 · 0 评论 -
索引器
#region Using directivesusing System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Windows.Forms;#endregionnamespace Indexers{原创 2008-05-24 17:19:00 · 414 阅读 · 0 评论 -
使用继承3
namespace Tokenizer{ abstract class DefaultTokenImpl { new public string ToString() { return this.name; } protected DefaultTokenImpl(string name) { this.name = name; } private readonly原创 2008-05-24 10:20:00 · 442 阅读 · 0 评论 -
使用继承
#region Using directivesusing System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Windows.Forms;#endregionnamespace Tokenizer{原创 2008-05-24 10:07:00 · 434 阅读 · 0 评论 -
数组练习
namespace ParamsArray{ using System; class Util { // to do public static int Sum(params int[] paramList) { if (paramList == null)//SHUZU WWEIKONG { throw new Ar原创 2008-05-23 08:43:00 · 418 阅读 · 0 评论 -
根据参数串构建xml实例(不用foreach对数组遍历的原因是它会包含自定义函数has)
根据参数串构建xml实例(不用foreach对数组遍历的原因是它会包含自定义函数has)有个视频里哟个 用XML 记录信息的 明天弄下了 Test XML function getParameter(){ aParameter=[1,2,3,4,5,6,7,8];原创 2008-05-26 19:40:00 · 570 阅读 · 0 评论 -
在一个整数数组中寻找符合A+B=C的组合,使C为最大
private void button1_Click(object sender, EventArgs e){ #region 初始化数组 int[] array = new int[arrayLength]; Random random = new Random(1000); // 固定随机种子,使大家测试数据一致 for (int i = 0; i array.Len原创 2008-05-25 09:24:00 · 2360 阅读 · 0 评论 -
委派的示例
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace weipai{ public partial clas原创 2008-05-25 07:40:00 · 500 阅读 · 0 评论 -
不用close了 创建的对象在using 语句结束后被摧毁了
#region Using directivesusing System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.IO;using System.Drawing;using System.Windows.Forms;#endregionname原创 2008-05-24 13:06:00 · 625 阅读 · 0 评论 -
抛出异常
#region Using directivesusing System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Windows.Forms;#endregionnamespace MathsOpera原创 2008-05-22 19:35:00 · 475 阅读 · 0 评论 -
wsm 非静态的方法“change.Program.ConvertStr1(string)”要求对象引用
namespace change{ class Program { static void Main(string[] args) { string line = Console.ReadLine(); string output = ConvertStr1(line);原创 2008-06-23 16:35:00 · 1328 阅读 · 0 评论