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)

ソース:
Version.cs
ソース:
Version.cs
ソース:
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)

ソース:
Version.cs
ソース:
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)

ソース:
Version.cs
ソース:
Version.cs
ソース:
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)

ソース:
Version.cs
ソース:
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

適用対象