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 打开类型 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} }}"

适用于