mscorlib(4.0.0.0) API with additions
IFormattable.cs
2 
3 namespace System
4 {
6  [ComVisible(true)]
7  [__DynamicallyInvokable]
8  public interface IFormattable
9  {
14  [__DynamicallyInvokable]
15  string ToString(string format, IFormatProvider formatProvider);
16  }
17 }
Definition: __Canon.cs:3
Provides a mechanism for retrieving an object to control formatting.
string ToString(string format, IFormatProvider formatProvider)
Formats the value of the current instance using the specified format.
Provides functionality to format the value of an object into a string representation.
Definition: IFormattable.cs:8