摘要: /**//// /// 判断一个字符串是否为合法整数(不限制长度) /// /// 字符串 /// public static bool IsInteger(string s) { string pattern = @"^\d*$"; retur... 阅读全文
posted @ 2007-11-30 13:41 赖文华.NET 阅读(271) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication1 { public class Program { static void Main(string[] args) { System.... 阅读全文
posted @ 2007-11-30 11:04 赖文华.NET 阅读(1261) 评论(0) 推荐(0) 编辑