Rune.TryEncodeToUtf8(Span<Byte>, Int32) 方法

定义

将此 Rune 解码为 UTF-8 编码目标缓冲区。

public:
 bool TryEncodeToUtf8(Span<System::Byte> destination, [Runtime::InteropServices::Out] int % bytesWritten);
public bool TryEncodeToUtf8 (Span<byte> destination, out int bytesWritten);
member this.TryEncodeToUtf8 : Span<byte> * int -> bool
Public Function TryEncodeToUtf8 (destination As Span(Of Byte), ByRef bytesWritten As Integer) As Boolean

参数

destination
Span<Byte>

UTF-8 编码值写入到的缓冲区。

bytesWritten
Int32

写入 destinationByte 值的数目,或者如果目标缓冲区大小不足以包含输出,则为 0。

返回

如果该值已写入缓冲区,则为 true;否则为 false

注解

Utf8SequenceLength可以提前查询 属性以确定所需的缓冲区大小destination

适用于