This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// <summary>Defines a method that supports custom formatting of the value of an object.</summary>
// Token: 0x0200010D RID: 269
[Token(Token = "0x200010D")]
[ComVisible(true)]
public interface ICustomFormatter
{
/// <summary>Converts the value of a specified object to an equivalent string representation using specified format and culture-specific formatting information.</summary>
/// <param name="format">A format string containing formatting specifications.</param>
/// <param name="arg">An object to format.</param>
/// <param name="formatProvider">An object that supplies format information about the current instance.</param>
/// <returns>The string representation of the value of <paramref name="arg" />, formatted as specified by <paramref name="format" /> and <paramref name="formatProvider" />.</returns>
// Token: 0x060009D8 RID: 2520
[Token(Token = "0x60009D8")]
[Address(Slot = "0")]
string Format(string format, object arg, IFormatProvider formatProvider);
}
}