Encoding.TryGetChars 方法

定义

如果目标足够大,则从指定的只读范围将一组字节解码为字符范围。

public:
 virtual bool TryGetChars(ReadOnlySpan<System::Byte> bytes, Span<char> chars, [Runtime::InteropServices::Out] int % charsWritten);
public virtual bool TryGetChars (ReadOnlySpan<byte> bytes, Span<char> chars, out int charsWritten);
abstract member TryGetChars : ReadOnlySpan<byte> * Span<char> * int -> bool
override this.TryGetChars : ReadOnlySpan<byte> * Span<char> * int -> bool
Public Overridable Function TryGetChars (bytes As ReadOnlySpan(Of Byte), chars As Span(Of Char), ByRef charsWritten As Integer) As Boolean

参数

bytes
ReadOnlySpan<Byte>

包含要解码的字节序列的只读范围。

chars
Span<Char>

接收已解码字节的字符范围。

charsWritten
Int32

成功完成操作后,将字符数解码为 chars

返回

true 如果所有字符都解码到目标中,则为 ; false 如果目标太小,无法包含所有解码的字符,则为 。

适用于