Double.TryFormat(Span<Char>, Int32, ReadOnlySpan<Char>, IFormatProvider) メソッド
定義
現在の double 型インスタンスの値の、指定した文字スパンへの書式設定を試みます。Tries to format the value of the current double instance into the provided span of characters.
public bool TryFormat (Span<char> destination, out int charsWritten, ReadOnlySpan<char> format = null, IFormatProvider provider = null);
member this.TryFormat : Span<char> * int * ReadOnlySpan<char> * IFormatProvider -> bool
Public Function TryFormat (destination As Span(Of Char), ByRef charsWritten As Integer, Optional format As ReadOnlySpan(Of Char) = null, Optional provider As IFormatProvider = null) As Boolean
パラメーター
このメソッドから戻るとき、このインスタンスの値が文字スパンとして書式設定されます。When this method returns, this instance's value formatted as a span of characters.
- charsWritten
- Int32
このメソッドから制御が戻るときに、destination
に書き込まれた文字数。When this method returns, the number of characters that were written in destination
.
- format
- ReadOnlySpan<Char>
destination
に許容される書式を定義する、標準またはカスタムの書式指定文字列を表す文字を格納しているスパン。A span containing the characters that represent a standard or custom format string that defines the acceptable format for destination
.
- provider
- IFormatProvider
destination
のカルチャ固有の書式情報を指定する省略可能なオブジェクト。An optional object that supplies culture-specific formatting information for destination
.
戻り値
書式設定が正常に実行された場合は true
。それ以外の場合は false
。true
if the formatting was successful; otherwise, false
.