上一页 1 ··· 67 68 69 70 71 72 73 74 75 ··· 86 下一页
摘要: //本函数是使用了反射来实现访问对象的属性值的函数 //using System.Reflection; private void GetObjectPropertyValue(clsUser user) { Type t = user.GetType(); foreach (PropertyInfo pi in t.GetProperties()) ... 阅读全文
posted @ 2008-03-26 18:01 zijinguang 阅读(989) 评论(0) 推荐(0) 编辑
摘要: 1/**//// 2/// 用md5加密 3/// 4/// 输入的数据 5/// 6public static string MD5(string Sourcein) 7{ 8 MD5CryptoServiceProvider MD5CSP = new MD5CryptoServiceProvider(); 9 byte[] MD5Source = Syst... 阅读全文
posted @ 2008-03-25 15:33 zijinguang 阅读(445) 评论(0) 推荐(0) 编辑
上一页 1 ··· 67 68 69 70 71 72 73 74 75 ··· 86 下一页