MemoryExtensions.ToUpper Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Copies the characters from the source span into the destination, converting each character to uppercase, using the casing rules of the specified culture.
public:
[System::Runtime::CompilerServices::Extension]
static int ToUpper(ReadOnlySpan<char> source, Span<char> destination, System::Globalization::CultureInfo ^ culture);
public static int ToUpper (this ReadOnlySpan<char> source, Span<char> destination, System.Globalization.CultureInfo? culture);
public static int ToUpper (this ReadOnlySpan<char> source, Span<char> destination, System.Globalization.CultureInfo culture);
static member ToUpper : ReadOnlySpan<char> * Span<char> * System.Globalization.CultureInfo -> int
<Extension()>
Public Function ToUpper (source As ReadOnlySpan(Of Char), destination As Span(Of Char), culture As CultureInfo) As Integer
Parameters
- source
- ReadOnlySpan<Char>
The source span.
- culture
- CultureInfo
An object that supplies culture-specific casing rules.
Returns
The number of characters written into the destination span. If the destination is too small, returns -1.
Exceptions
The source and destination buffers overlap.
Remarks
If culture
is null
, CultureInfo.CurrentCulture will be used.