using System;
using System.Runtime.InteropServices;
namespace System
{
/// Defines a method that supports custom formatting of the value of an object.
/// 2
// Token: 0x02000675 RID: 1653
[ComVisible(true)]
public interface ICustomFormatter
{
/// Converts the value of a specified object to an equivalent string representation using specified format and culture-specific formatting information.
/// The string representation of the value of , formatted as specified by and .
/// A format string containing formatting specifications.
/// An object to format.
/// An object that supplies format information about the current instance.
/// 2
// Token: 0x06003EDB RID: 16091
string Format(string format, object arg, IFormatProvider formatProvider);
}
}