Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

FormattableString.Invariant(FormattableString) Method

Definition

Namespace:
System
Assemblies:
mscorlib.dll, System.Runtime.dll
Assemblies:
netstandard.dll, System.Runtime.dll
Assembly:
System.Runtime.dll
Assembly:
mscorlib.dll
Assembly:
netstandard.dll
Source:
FormattableString.cs
Source:
FormattableString.cs
Source:
FormattableString.cs
Source:
FormattableString.cs
Source:
FormattableString.cs

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Returns a result string in which arguments are formatted by using the conventions of the invariant culture.

public:
 static System::String ^ Invariant(FormattableString ^ formattable);
public static string Invariant(FormattableString formattable);
static member Invariant : FormattableString -> string
Public Shared Function Invariant (formattable As FormattableString) As String

Parameters

formattable
FormattableString

The object to convert to a result string.

Returns

The string that results from formatting the current instance by using the conventions of the invariant culture.

Exceptions

formattable is null.

Remarks

This static method can be imported in C# by the following statement:

using static System.FormattableString;

Within the scope that using static directive, an interpolated string may be formatted using the conventions of the invariant culture by code such as the following:

Invariant($"{{ lat = {latitude}; lon = {longitude} }}")

Applies to


Feedback

Was this page helpful?