次の方法で共有


FormattableString.CurrentCulture(FormattableString) メソッド

定義

引数が現在のカルチャの規則を使用して書式設定された結果の文字列を返します。

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

書式設定する文字列。

戻り値

String

現在のカルチャの規則を使用して現在のインスタンスを書式設定した結果の文字列。

注釈

この静的メソッドは、次の方法で 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} }}"

適用対象