Ascii.ToUpperInPlace Method

Definition

Overloads

ToUpperInPlace(Span<Byte>, Int32)

Performs in-place lowercase conversion.

ToUpperInPlace(Span<Char>, Int32)

Performs in-place lowercase conversion.

ToUpperInPlace(Span<Byte>, Int32)

Source:
Ascii.CaseConversion.cs
Source:
Ascii.CaseConversion.cs

Performs in-place lowercase conversion.

public:
 static System::Buffers::OperationStatus ToUpperInPlace(Span<System::Byte> value, [Runtime::InteropServices::Out] int % bytesWritten);
public static System.Buffers.OperationStatus ToUpperInPlace (Span<byte> value, out int bytesWritten);
static member ToUpperInPlace : Span<byte> * int -> System.Buffers.OperationStatus
Public Shared Function ToUpperInPlace (value As Span(Of Byte), ByRef bytesWritten As Integer) As OperationStatus

Parameters

value
Span<Byte>

The ASCII text buffer.

bytesWritten
Int32

When this method returns, contains the number of processed bytes.

Returns

An OperationStatus describing the result of the operation.

Applies to

ToUpperInPlace(Span<Char>, Int32)

Source:
Ascii.CaseConversion.cs
Source:
Ascii.CaseConversion.cs

Performs in-place lowercase conversion.

public:
 static System::Buffers::OperationStatus ToUpperInPlace(Span<char> value, [Runtime::InteropServices::Out] int % charsWritten);
public static System.Buffers.OperationStatus ToUpperInPlace (Span<char> value, out int charsWritten);
static member ToUpperInPlace : Span<char> * int -> System.Buffers.OperationStatus
Public Shared Function ToUpperInPlace (value As Span(Of Char), ByRef charsWritten As Integer) As OperationStatus

Parameters

value
Span<Char>

The ASCII text buffer.

charsWritten
Int32

When this method returns, contains the number of processed characters.

Returns

An OperationStatus describing the result of the operation.

Applies to