摘要: Testing steps:Create a Class Library project, right-click menu to add a "Unit Test" cs file and add Test Method in that file.Right-click on the projec... 阅读全文
posted @ 2013-06-06 18:11 chuwachen 阅读(150) 评论(0) 推荐(0)
摘要: // Removes special characters from a stringpublic string RemoveSpecialChars(string input, string specialChars){ return Regex.Replace(input, special... 阅读全文
posted @ 2013-06-06 12:01 chuwachen 阅读(153) 评论(0) 推荐(0)
摘要: private byte[] salt = ASCIIEncoding.ASCII.GetBytes("SaltString"); private const int DESKeySize = 8; // The key for DES must be 8 bytes. /// //... 阅读全文
posted @ 2013-06-06 11:50 chuwachen 阅读(252) 评论(0) 推荐(0)