RandomExtensionsNextChars(Random, SpanChar, ReadOnlySpanChar) Method
Fills the elements of a buffer with random characters using the specified allowedCharacters.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 7.2.0
public static void NextChars(
this Random random,
Span<char> buffer,
ReadOnlySpan<char> allowedCharacters
)
<ExtensionAttribute>
Public Shared Sub NextChars (
random As Random,
buffer As Span(Of Char),
allowedCharacters As ReadOnlySpan(Of Char)
)
public:
[ExtensionAttribute]
static void NextChars(
Random^ random,
Span<wchar_t> buffer,
ReadOnlySpan<wchar_t> allowedCharacters
)
[<ExtensionAttribute>]
static member NextChars :
random : Random *
buffer : Span<char> *
allowedCharacters : ReadOnlySpan<char> -> unit
- random Random
- The Random instance to use.
- buffer SpanChar
- A SpanT of characters to contain random values.
- allowedCharacters ReadOnlySpanChar
- A ReadOnlySpanT containing the allowed characters. Recurring characters may appear in the result more frequently than others.
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).