using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System { /// Provides functionality to format the value of an object into a string representation. // Token: 0x0200010A RID: 266 [Token(Token = "0x200010A")] [ComVisible(true)] public interface IFormattable { /// Formats the value of the current instance using the specified format. /// The format to use. /// -or- /// A null reference ( in Visual Basic) to use the default format defined for the type of the implementation. /// The provider to use to format the value. /// -or- /// A null reference ( in Visual Basic) to obtain the numeric format information from the current locale setting of the operating system. /// The value of the current instance in the specified format. // Token: 0x060009B2 RID: 2482 [Token(Token = "0x60009B2")] [Address(Slot = "0")] string ToString(string format, IFormatProvider formatProvider); } }