using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System { /// Provides a mechanism for retrieving an object to control formatting. // Token: 0x02000109 RID: 265 [Token(Token = "0x2000109")] [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: 0x060009B1 RID: 2481 [Token(Token = "0x60009B1")] [Address(Slot = "0")] object GetFormat(Type formatType); } }