Ascii.ToLowerInPlace 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

ToLowerInPlace(Span<Byte>, Int32)

Performs in-place uppercase conversion.

ToLowerInPlace(Span<Char>, Int32)

Performs in-place uppercase conversion.

ToLowerInPlace(Span<Byte>, Int32)

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

Performs in-place uppercase conversion.

C#
public static System.Buffers.OperationStatus ToLowerInPlace(Span<byte> value, out int bytesWritten);

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

.NET 10 and other versions
Product Versions
.NET 8, 9, 10

ToLowerInPlace(Span<Char>, Int32)

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

Performs in-place uppercase conversion.

C#
public static System.Buffers.OperationStatus ToLowerInPlace(Span<char> value, out int charsWritten);

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

.NET 10 and other versions
Product Versions
.NET 8, 9, 10