摘要: C#的String.Split 方法String.Split 方法有6个重载函数:程序代码1) public string[] Split(params char[] separator)2) public string[] Split(char[] separator, int count)3) public string[] Split(char[] separator, StringSpli... 阅读全文
posted @ 2009-07-18 22:50 panygu 阅读(5340) 评论(1) 推荐(1) 编辑
摘要: I’ve been playing around with the RichTextBox, and as Richard points out,the free spell checking on WPF TextBoxes is really cool– especially for the “spelling challenged” such ... 阅读全文
posted @ 2009-07-18 18:41 panygu 阅读(400) 评论(0) 推荐(0) 编辑
摘要: 枚举  枚举类型声明为一组相关的符号常数定义了一个类型名称。枚举用于“多项选择”场合,就是程序运行时从编译时已经设定的固定数目的“选择”中做出决定。  枚举类型(也称为枚举)为定义一组可以赋给变量的命名整数常量提供了一种有效的方法。例如,假设您必须定义一个变量,该变量的值表示一周中的一天。该变量只能存储七个有意义的值。若要定义这些值,可以使用枚举类型... 阅读全文
posted @ 2009-07-18 16:40 panygu 阅读(854) 评论(0) 推荐(0) 编辑