Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

22 lines
866 B
C#

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