上一页 1 ··· 3 4 5 6 7

2010年9月20日

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;namespace ConsoleApplication1{ public class MyTest : IEnumerator { public object Current { ge... 阅读全文
posted @ 2010-09-20 12:01 胖子黎 阅读(673) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;namespace ConsoleApplication1{ public class Studuent : IEnumerable { private object[] temp = ... 阅读全文
posted @ 2010-09-20 01:11 胖子黎 阅读(358) 评论(0) 推荐(0) 编辑

2010年9月17日

摘要: c#正则表达式用法大全 只能输入数字:"^[0-9]*$"。只能输入n位的数字:"^\d{n}$"。只能输入至少n位的数字:"^\d{n,}$"。只能输入m~n位的数字:。"^\d{m,n}$"只能输入零和非零开头的数字:"^(0|[1-9][0-9]*)$"。只能输入有两位小数的正实数:"^[0-9]+(.[0-9]{2})?$"。只能输入有1~3位小数的正实数:"^[0-9]+(.[0-9]{... 阅读全文
posted @ 2010-09-17 12:40 胖子黎 阅读(452) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Text;using System.IO;namespace 这是一个加密文件的程序{ public class _输入你的加密口令 { private string password; public string Password { get { return password; } set { password = value; } } pu... 阅读全文
posted @ 2010-09-17 00:59 胖子黎 阅读(224) 评论(0) 推荐(0) 编辑

2010年9月16日

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ //public class MyTest : IDisposable //{ // #region IDisposable 成员 // public MyTest() //... 阅读全文
posted @ 2010-09-16 12:57 胖子黎 阅读(193) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7

导航