using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System { /// Provides a mechanism for retrieving an object to control formatting. // Token: 0x02000110 RID: 272 [Token(Token = "0x2000110")] [ComVisible(true)] public interface IFormatProvider { /// Returns an object that provides formatting services for the specified type. /// An object that specifies the type of format object to return. /// An instance of the object specified by , if the implementation can supply that type of object; otherwise, . // Token: 0x060009DB RID: 2523 [Token(Token = "0x60009DB")] [Address(Slot = "0")] object GetFormat(Type formatType); } }