Version.TryFormat メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
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
パラメーター
- 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
パラメーター
- 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
パラメーター
- 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
パラメーター
- bytesWritten
- Int32
このメソッドが戻るときに、 に書 utf8Destination
き込まれたバイト数が格納されます。
戻り値
書式設定が正常に実行された場合は true
。それ以外の場合は false
。
適用対象
.NET