Partager via


FormattableString.CurrentCulture(FormattableString) Méthode

Définition

Retourne une chaîne de résultat dans laquelle les arguments sont mis en forme à l’aide des conventions de la culture actuelle.

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

Paramètres

formattable
FormattableString

Chaîne à mettre en forme.

Retours

String

Chaîne qui résulte de la mise en forme de l’instance actuelle à l’aide des conventions de la culture actuelle.

Remarques

Cette méthode statique peut être importée en C# ou F# par :

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} }}"

S’applique à