摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace Example43{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } privat... 阅读全文
posted @ 2011-10-20 01:18 C#_初学者 阅读(1891) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Collections; // 引用 IEnumeratornamespace Example42{ public partial class Form1 : Form { public Form1() {... 阅读全文
posted @ 2011-10-20 00:24 C#_初学者 阅读(283) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace Example41{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } privat... 阅读全文
posted @ 2011-10-19 22:51 C#_初学者 阅读(561) 评论(0) 推荐(0)
摘要: // 效果图 --------using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace Example39{ public partial class Form1 : Form { public Form1() { InitializeComponent();... 阅读全文
posted @ 2011-10-18 23:43 C#_初学者 阅读(1285) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace Example37{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } privat... 阅读全文
posted @ 2011-10-18 21:50 C#_初学者 阅读(508) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace Example36{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } privat... 阅读全文
posted @ 2011-10-18 21:25 C#_初学者 阅读(706) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace Example35{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } privat... 阅读全文
posted @ 2011-10-18 20:32 C#_初学者 阅读(816) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace Example34{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } string... 阅读全文
posted @ 2011-10-18 01:29 C#_初学者 阅读(381) 评论(0) 推荐(0)
摘要: 效果图 ----using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Threading; //用到了线程namespace Example33{ public partial class Form1 : Form { public Form1() { ... 阅读全文
posted @ 2011-10-17 23:31 C#_初学者 阅读(2203) 评论(0) 推荐(0)
摘要: 1,1,2,3,5,8,13,21,34....... 要求用递归的方法算出 第 30 个数是多少!using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace Example32{ public partial class Form1 : Form { public Form1... 阅读全文
posted @ 2011-10-17 21:48 C#_初学者 阅读(1228) 评论(0) 推荐(0)