2013年4月18日
摘要: //字符转换ASCIIpublic static int Asc(string character) { if (character.Length == 1) { System.Text.ASCIIEncoding asciiEncoding = new System.Text.ASCIIEncoding(); int intAsciiCode = (int)asciiEncoding.GetBytes(character)[0]; return (intAsciiCode); } else { throw new Exception("Ch... 阅读全文
posted @ 2013-04-18 10:40 山雨-B 阅读(333) 评论(0) 推荐(0)