Ascii.ToUpperInPlace 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.
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
- 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
- charsWritten
- Int32
When this method returns, contains the number of processed characters.
Returns
An OperationStatus describing the result of the operation.