using System;
using System.Runtime.InteropServices;
namespace System
{
/// Provides functionality to format the value of an object into a string representation.
/// 2
// Token: 0x02000007 RID: 7
[ComVisible(true)]
public interface IFormattable
{
/// Formats the value of the current instance using the specified format.
/// The value of the current instance in the specified format.
/// The format to use.-or- A null reference (Nothing in Visual Basic) to use the default format defined for the type of the implementation.
/// The provider to use to format the value.-or- A null reference (Nothing in Visual Basic) to obtain the numeric format information from the current locale setting of the operating system.
/// 2
// Token: 0x0600006F RID: 111
string ToString(string format, IFormatProvider formatProvider);
}
}