Move portable thread pool to shared partition (dotnet/corert#7828)
[mono-project.git] / netcore / System.Private.CoreLib / shared / System / IFormatProvider.cs
blobf1e767f543725a21798dbca0e21adf522e9fc135
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 **
8 **
9 ** Purpose: Notes a class which knows how to return formatting information
12 ============================================================*/
14 namespace System
16 public interface IFormatProvider
18 // Interface does not need to be marked with the serializable attribute
19 object? GetFormat(Type? formatType);