FormattableString.IFormattable.ToString(String, IFormatProvider) Method

Definition

Returns the string that results from formatting the format string along with its arguments by using the formatting conventions of a specified culture.

 virtual System::String ^ System.IFormattable.ToString(System::String ^ ignored, IFormatProvider ^ formatProvider) = IFormattable::ToString;
string IFormattable.ToString (string ignored, IFormatProvider formatProvider);
abstract member System.IFormattable.ToString : string * IFormatProvider -> string
override this.System.IFormattable.ToString : string * IFormatProvider -> string
Function ToString (ignored As String, formatProvider As IFormatProvider) As String Implements IFormattable.ToString

Parameters

ignored
String

A string. This argument is ignored.

formatProvider
IFormatProvider

An object that provides culture-specific formatting information.

Returns

A string formatted using the conventions of the formatProvider parameter.

Implements

Remarks

This implementation calls the derived class' ToString(IFormatProvider) implementation.

This member is an explicit interface implementation. It can be used only when the FormattableString instance is cast to an IFormattable interface.

Applies to