示例#1
0
        public static string CreateRandomPassword(int PasswordLength)
        {
            string chars = UserManagementLogic.Generate(PasswordLength, 8);

            return(chars);
        }