27 lines
674 B
C#
27 lines
674 B
C#
|
// ==++==
|
||
|
//
|
||
|
// 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);
|
||
|
}
|
||
|
}
|