FormattableString.IFormattable.ToString(String, IFormatProvider) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回使用指定区域性的格式化约定格式化格式字符串及其参数生成的字符串。
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
参数
- ignored
- String
一个字符串。 此参数忽略。
- formatProvider
- IFormatProvider
一个对象,提供区域性特定的格式设置信息。
返回
使用 formatProvider
参数的约定格式化的字符串。
实现
注解
此实现调用派生类的 ToString(IFormatProvider) 实现。
此成员是显式接口应用。 它只能在 FormattableString 实例被强制转换为 IFormattable 接口时使用。