[This is preliminary documentation and is subject to change.]
Generates a random English word which is of the specified size. The min size must be of at least 4 chars
Namespace: NFX.ParsingAssembly: NFX (in NFX.dll) Version: 3.0.0.1 (3.0.0.1)
public static string GenerateWord(
int minLength = 4,
int maxLength = 20
)
public static string GenerateWord(
int minLength = 4,
int maxLength = 20
)
Public Shared Function GenerateWord (
Optional minLength As Integer = 4,
Optional maxLength As Integer = 20
) As String
Public Shared Function GenerateWord (
Optional minLength As Integer = 4,
Optional maxLength As Integer = 20
) As String
public:
static String^ GenerateWord(
int minLength = 4,
int maxLength = 20
)
public:
static String^ GenerateWord(
int minLength = 4,
int maxLength = 20
)
static member GenerateWord :
?minLength : int *
?maxLength : int
(* Defaults:
let _minLength = defaultArg minLength 4
let _maxLength = defaultArg maxLength 20
*)
-> string
static member GenerateWord :
?minLength : int *
?maxLength : int
(* Defaults:
let _minLength = defaultArg minLength 4
let _maxLength = defaultArg maxLength 20
*)
-> string
Return Value
Type:
String