Version.TryFormat 方法

定义

重载

TryFormat(Span<Char>, Int32, Int32)

尝试将此版本示例的格式设置到字符范围内。

TryFormat(Span<Byte>, Int32, Int32)

尝试将此版本实例格式化为字节范围。

TryFormat(Span<Char>, Int32)

尝试将此版本示例的格式设置到字符范围内。

TryFormat(Span<Byte>, Int32)

尝试将此版本实例格式化为字节范围。

TryFormat(Span<Char>, Int32, Int32)

Source:
Version.cs
Source:
Version.cs
Source:
Version.cs

尝试将此版本示例的格式设置到字符范围内。

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

参数

destination
Span<Char>

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

fieldCount
Int32

要返回的部分数。 此值介于 0 到 4 之间。

charsWritten
Int32

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

返回

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

适用于

TryFormat(Span<Byte>, Int32, Int32)

Source:
Version.cs
Source:
Version.cs

尝试将此版本实例格式化为字节范围。

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

参数

utf8Destination
Span<Byte>

写入此实例值(格式为 UTF-8 字节)的跨度。

fieldCount
Int32

要返回的部分数。 此值介于 0 到 4 之间。

bytesWritten
Int32

此方法返回时,包含写入 的 utf8Destination字节数。

返回

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

适用于

TryFormat(Span<Char>, Int32)

Source:
Version.cs
Source:
Version.cs
Source:
Version.cs

尝试将此版本示例的格式设置到字符范围内。

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

适用于

TryFormat(Span<Byte>, Int32)

Source:
Version.cs
Source:
Version.cs

尝试将此版本实例格式化为字节范围。

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

参数

utf8Destination
Span<Byte>

写入此实例值(格式为 UTF-8 字节)的跨度。

bytesWritten
Int32

此方法返回时,包含写入 的 utf8Destination字节数。

返回

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

适用于