File: system\icustomformatter.cs
Project: ndp\clr\src\bcl\mscorlib.csproj (mscorlib)
// ==++==
// 
//   Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// ==--==
/*============================================================
**
** Interface:  ICustomFormatter
**
**
** Purpose: Marks a class as providing special formatting
**
**
===========================================================*/
namespace System {
    
    using System;
    using System.Runtime.Serialization;
 
    [System.Runtime.InteropServices.ComVisible(true)]
    public interface ICustomFormatter
    {
        // Interface does not need to be marked with the serializable attribute
        String Format (String format, Object arg, IFormatProvider formatProvider);
    }
}