2001-08-01 Dietmar Maurer <dietmar@ximian.com>
[mono.git] / mcs / class / corlib / System / Type.cs
1 //
2 // System.Type.cs
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //
7 // (C) Ximian, Inc.  http://www.ximian.com
8 //
9 // TODO: Mucho left to implement.
10 //
11
12 namespace System {
13
14         public abstract class Type {
15
16                 public abstract string FullName {
17                         get;
18                 }
19                 
20                 public Type GetTypeFromHandle (RuntimeTypeHandle handle) { 
21                         
22                         // FIXME: implement me
23                         
24                         return null;
25                 } 
26         }
27 }