Get a random string made of 'len' alphanumeric characters, both uppercase and lowercase, with numbers.

Namespace: LLCryptoLib.Utils
Assembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)

Syntax

C#
public static string Get(
	int len
)
Visual Basic
Public Shared Function Get ( _
	len As Integer _
) As String
Visual C++
public:
static String^ Get(
	int len
)

Parameters

len
Type: System..::..Int32
The length of the random generated string.

Return Value

A random string made of 'len' alphanumeric characters, both uppercase and lowercase, with numbers.

See Also