摘要: private int GetLength(String aOrgStr) { int intLen = aOrgStr.Length; int i; char[] chars = aOrgStr.ToCharArray(); for (i = 0; i < chars.Length; i++) { if (System.Convert.ToInt32(chars[i]) > 255)... 阅读全文
posted @ 2007-11-07 11:38 磊.NET 阅读(411) 评论(1) 推荐(0) 编辑