Share via


Ascii.ToUpper 메서드

정의

오버로드

ToUpper(ReadOnlySpan<Byte>, Span<Byte>, Int32)

원본 버퍼에서 대상 버퍼로 텍스트를 복사하여 복사하는 동안 ASCII 문자를 대문자로 변환합니다.

ToUpper(ReadOnlySpan<Byte>, Span<Char>, Int32)

원본 버퍼에서 대상 버퍼로 텍스트를 복사하여 복사하는 동안 ASCII 문자를 대문자로 변환합니다.

ToUpper(ReadOnlySpan<Char>, Span<Byte>, Int32)

원본 버퍼에서 대상 버퍼로 텍스트를 복사하여 복사하는 동안 ASCII 문자를 대문자로 변환합니다.

ToUpper(ReadOnlySpan<Char>, Span<Char>, Int32)

원본 버퍼에서 대상 버퍼로 텍스트를 복사하여 복사하는 동안 ASCII 문자를 대문자로 변환합니다.

ToUpper(ReadOnlySpan<Byte>, Span<Byte>, Int32)

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

원본 버퍼에서 대상 버퍼로 텍스트를 복사하여 복사하는 동안 ASCII 문자를 대문자로 변환합니다.

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

매개 변수

source
ReadOnlySpan<Byte>

ASCII 텍스트를 읽을 원본 버퍼입니다.

destination
Span<Byte>

대문자 텍스트가 기록되는 대상 버퍼입니다.

bytesWritten
Int32

이 메서드가 반환될 때 는 에 실제로 기록 destination된 바이트 수를 포함합니다. 실제로 에서 source읽은 바이트 수와 동일합니다.

반환

OperationStatus 작업의 결과를 설명하는 입니다.

설명

현재 위치 변환은 금지되어 있습니다. 이를 위해 사용 ToUpperInPlace(Span<Byte>, Int32) 하십시오.

적용 대상

ToUpper(ReadOnlySpan<Byte>, Span<Char>, Int32)

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

원본 버퍼에서 대상 버퍼로 텍스트를 복사하여 복사하는 동안 ASCII 문자를 대문자로 변환합니다.

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

매개 변수

source
ReadOnlySpan<Byte>

ASCII 텍스트를 읽을 원본 버퍼입니다.

destination
Span<Char>

대문자 텍스트가 기록되는 대상 버퍼입니다.

charsWritten
Int32

이 메서드가 반환될 때 에는 실제로 에 기록 destination된 문자 수가 포함됩니다. 실제로 에서 source읽은 바이트 수와 동일합니다.

반환

OperationStatus 작업의 결과를 설명하는 입니다.

적용 대상

ToUpper(ReadOnlySpan<Char>, Span<Byte>, Int32)

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

원본 버퍼에서 대상 버퍼로 텍스트를 복사하여 복사하는 동안 ASCII 문자를 대문자로 변환합니다.

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

매개 변수

source
ReadOnlySpan<Char>

ASCII 텍스트를 읽을 원본 버퍼입니다.

destination
Span<Byte>

대문자 텍스트가 기록되는 대상 버퍼입니다.

bytesWritten
Int32

이 메서드가 반환될 때 는 에 실제로 기록 destination된 바이트 수를 포함합니다. 실제로 에서 source읽은 문자 수와 동일합니다.

반환

OperationStatus 작업의 결과를 설명하는 입니다.

적용 대상

ToUpper(ReadOnlySpan<Char>, Span<Char>, Int32)

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

원본 버퍼에서 대상 버퍼로 텍스트를 복사하여 복사하는 동안 ASCII 문자를 대문자로 변환합니다.

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

매개 변수

source
ReadOnlySpan<Char>

ASCII 텍스트를 읽을 원본 버퍼입니다.

destination
Span<Char>

대문자 텍스트가 기록되는 대상 버퍼입니다.

charsWritten
Int32

이 메서드가 반환될 때 에는 실제로 에 기록 destination된 문자 수가 포함됩니다. 실제로 에서 source읽은 문자 수와 동일합니다.

반환

OperationStatus 작업의 결과를 설명하는 입니다.

설명

현재 위치 변환은 금지되어 있습니다. 이를 위해 사용 ToUpperInPlace(Span<Char>, Int32) 하십시오.

적용 대상