| 123456789101112131415 |
- //
- // System.ICustomFormatter.cs
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System {
- interface ICustomFormatter {
- string Format (string format, object arg, IFormatProvider formatProvider);
- }
- }
|