1
Reply

Random question

isu_compu_dude

isu_compu_dude

Mar 22 2005 3:46 PM
2.5k
I am using the following code to create random passwords (not my code) public static string RandomPassword(int PasswordLength) { string _allowedChars = "ACDEFGHJKLMNPQRTWXYZ12345679"; Byte[] randomBytes = new Byte[PasswordLength]; char[] chars = new char[PasswordLength]; int allowedCharCount = _allowedChars.Length; Random randomObj = new Random(); for(int i = 0;i
Answers (1)
Next Recommended Forum