This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
using System;
using System.Runtime.InteropServices;
namespace System
{
/// <summary>Defines a method that supports custom formatting of the value of an object.</summary>
/// <filterpriority>2</filterpriority>
// Token: 0x02000675 RID: 1653
[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>
/// <returns>The string representation of the value of <paramref name="arg" />, formatted as specified by <paramref name="format" /> and <paramref name="formatProvider" />.</returns>
/// <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>
/// <filterpriority>2</filterpriority>
// Token: 0x06003EDB RID: 16091
string Format(string format, object arg, IFormatProvider formatProvider);
}
}