Generates a random password.
Shared OverloadsPublic Function Generate( _ ByVal minLength As Integer, _ ByVal maxLength As Integer _ ) As String
public static string Generate( int minLength, int maxLength );
public: static String* Generate( int minLength, int maxLength );
public static function Generate( int minLength, int maxLength ): String;
The length of the generated password will be determined at random and it will fall with the range determined by the function parameters.