Boolean.TryFormat(Span<Char>, Int32) 方法

定义

尝试将当前布尔实例的值的格式设置为提供的字符范围。

public:
 bool TryFormat(Span<char> destination, [Runtime::InteropServices::Out] int % charsWritten);
public bool TryFormat (Span<char> destination, out int charsWritten);
member this.TryFormat : Span<char> * int -> bool
Public Function TryFormat (destination As Span(Of Char), ByRef charsWritten As Integer) As Boolean

参数

destination
Span<Char>

要写入此实例的值(格式为字符范围)的跨度。

charsWritten
Int32

此方法返回时,包含写入的 destination字符数。

返回

如果格式设置成功,则为 true;否则为 false

适用于