using System;
using System.Runtime.InteropServices;
namespace System
{
/// Provides a mechanism for retrieving an object to control formatting.
/// 2
// Token: 0x02000676 RID: 1654
[ComVisible(true)]
public interface IFormatProvider
{
/// Returns an object that provides formatting services for the specified type.
/// An instance of the object specified by , if the implementation can supply that type of object; otherwise, null.
/// An object that specifies the type of format object to return.
/// 1
// Token: 0x06003EDC RID: 16092
object GetFormat(Type formatType);
}
}