Fix pragma warning restore (dotnet/coreclr#26389)
[mono-project.git] / netcore / System.Private.CoreLib / shared / System / ICustomFormatter.cs
blob6911e8c56081a4488ef0c3d03a1c5104e87a1171
1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
5 /*============================================================
6 **
7 ** Interface: ICustomFormatter
8 **
9 **
10 ** Purpose: Marks a class as providing special formatting
13 ===========================================================*/
15 namespace System
17 public interface ICustomFormatter
19 string Format(string? format, object? arg, IFormatProvider? formatProvider);