using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System { /// Provides functionality to format the value of an object into a string representation. // Token: 0x02000111 RID: 273 [Token(Token = "0x2000111")] [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: 0x060009DC RID: 2524 [Token(Token = "0x60009DC")] [Address(Slot = "0")] string ToString(string format, IFormatProvider formatProvider); } }