Ascii.ToLowerInPlace Method

Definition

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