2010年6月11日

C# How to Convert String to ASCII OR how to convert ASCII To String

摘要: 字符转ASCII码:public static int Asc(string character){if (character.Length == 1){System.Text.ASCIIEncoding asciiEncoding = new System.Text.ASCIIEncoding();int intAsciiCode = (int)asciiEncoding.GetBytes(ch... 阅读全文

posted @ 2010-06-11 17:02 我和我自己 阅读(370) 评论(0) 推荐(0) 编辑

导航