摘要: //加密 public string EncodingSMS(string s) { string result = string.Empty; byte[] arrByte = System.Text.Encoding.GetEncoding("GB2312").GetBytes(s); for(int i = 0; i < arrByte.Length; i++)... 阅读全文
posted @ 2005-04-26 14:07 rose 阅读(276) 评论(0) 推荐(0)