using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// Defines a method that supports custom formatting of the value of an object.
// Token: 0x02000106 RID: 262
[Token(Token = "0x2000106")]
[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.
/// A format string containing formatting specifications.
/// An object to format.
/// An object that supplies format information about the current instance.
/// The string representation of the value of , formatted as specified by and .
// Token: 0x060009AE RID: 2478
[Token(Token = "0x60009AE")]
[Address(Slot = "0")]
string Format(string format, object arg, IFormatProvider formatProvider);
}
}