RandomExtensionsNextChars(Random, Char, StringCreation) Method
Fills the elements of a buffer of character array with random characters using the specified strategy.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
public static void NextChars(
this Random random,
char[] buffer,
StringCreation strategy = StringCreation.Ascii
)
<ExtensionAttribute>
Public Shared Sub NextChars (
random As Random,
buffer As Char(),
Optional strategy As StringCreation = StringCreation.Ascii
)
public:
[ExtensionAttribute]
static void NextChars(
Random^ random,
array<wchar_t>^ buffer,
StringCreation strategy = StringCreation::Ascii
)
[<ExtensionAttribute>]
static member NextChars :
random : Random *
buffer : char[] *
?strategy : StringCreation
(* Defaults:
let _strategy = defaultArg strategy StringCreation.Ascii
*)
-> unit
- random Random
- The Random instance to use.
- buffer Char
- An array of characters to contain random values.
- strategy StringCreation (Optional)
- The strategy to use. This parameter is optional.
Default value: Ascii.
In Visual Basic and C#, you can call this method as an instance method on any object of type
Random. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).