摘要: 1 /// <summary> 2 /// 遍历泛型 3 /// </summary> 4 /// <typeparam name="T"></typeparam> 5 /// <param name="obj"></param> 6 /// <returns></returns> 7 public 阅读全文
posted @ 2015-12-30 16:13 gaozejie 阅读(1471) 评论(0) 推荐(0)
摘要: C# AES加密解密 1 public static string Encrypt(string key, string clearText) 2 { 3 byte[] clearBytes = Encoding.Unicode.GetBytes(clearText); 4 using (Aes e 阅读全文
posted @ 2015-12-30 13:26 gaozejie 阅读(774) 评论(0) 推荐(0)