摘要: 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 阅读(1445) 评论(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 阅读(752) 评论(0) 推荐(0) 编辑