Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/IFormattable.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

27 lines
1.1 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// <summary>Provides functionality to format the value of an object into a string representation.</summary>
// Token: 0x02000111 RID: 273
[Token(Token = "0x2000111")]
[ComVisible(true)]
public interface IFormattable
{
/// <summary>Formats the value of the current instance using the specified format.</summary>
/// <param name="format">The format to use.
/// -or-
/// A null reference (<see langword="Nothing" /> in Visual Basic) to use the default format defined for the type of the <see cref="T:System.IFormattable" /> implementation.</param>
/// <param name="formatProvider">The provider to use to format the value.
/// -or-
/// A null reference (<see langword="Nothing" /> in Visual Basic) to obtain the numeric format information from the current locale setting of the operating system.</param>
/// <returns>The value of the current instance in the specified format.</returns>
// Token: 0x060009DC RID: 2524
[Token(Token = "0x60009DC")]
[Address(Slot = "0")]
string ToString(string format, IFormatProvider formatProvider);
}
}