ICustomFormatter.cs 270 B

123456789101112131415
  1. //
  2. // System.ICustomFormatter.cs
  3. //
  4. // Author:
  5. // Miguel de Icaza ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. namespace System {
  10. interface ICustomFormatter {
  11. string Format (string format, object arg, IFormatProvider formatProvider);
  12. }
  13. }