FormattableString.CurrentCulture(FormattableString) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
引数が現在のカルチャの規則を使用して書式設定された結果の文字列を返します。
public:
static System::String ^ CurrentCulture(FormattableString ^ formattable);
public static string CurrentCulture (FormattableString formattable);
static member CurrentCulture : FormattableString -> string
Public Shared Function CurrentCulture (formattable As FormattableString) As String
パラメーター
- formattable
- FormattableString
書式設定する文字列。
戻り値
現在のカルチャの規則を使用して現在のインスタンスを書式設定した結果の文字列。
注釈
この静的メソッドは、次の方法で C# または F# にインポートできます。
using static System.FormattableString;
''fsharp open type System.FormattableString
Within the scope of that import directive, an interpolated string may be formatted in the current culture by writing, for example:
```csharp
CurrentCulture($"{{ lat = {latitude}; lon = {longitude} }}");
CurrentCulture $"{{ lat = {latitude}; lon = {longitude} }}"