Rune.TryEncodeToUtf8(Span<Byte>, Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将此 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
参数
返回
如果该值已写入缓冲区,则为 true
;否则为 false
。
注解
Utf8SequenceLength可以提前查询 属性以确定所需的缓冲区大小destination
。