Add some interfaces
[mono.git] / mcs / class / corlib / System / IFormatProvider.cs
1 //
2 // System.IFormatProvider.cs
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //
7 // (C) Ximian, Inc.  http://www.ximian.com
8 //
9
10 namespace System {
11
12         interface IFormatProvider {
13                 public object GetFormat (Type format_type);
14         }
15 }