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
+19
View File
@@ -0,0 +1,19 @@
using System;
using System.Runtime.InteropServices;
namespace System
{
/// <summary>Provides a mechanism for retrieving an object to control formatting.</summary>
/// <filterpriority>2</filterpriority>
// Token: 0x02000676 RID: 1654
[ComVisible(true)]
public interface IFormatProvider
{
/// <summary>Returns an object that provides formatting services for the specified type.</summary>
/// <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, null.</returns>
/// <param name="formatType">An object that specifies the type of format object to return. </param>
/// <filterpriority>1</filterpriority>
// Token: 0x06003EDC RID: 16092
object GetFormat(Type formatType);
}
}