FormattableString.CurrentCulture(FormattableString) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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
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} }}"