FormattableString.Invariant(FormattableString) Method
Definition
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} }}")