Commit new files, almost compiles with /nostdlib
[mono.git] / mcs / class / corlib / System / Attribute.cs
1 //
2 // System.Attribute.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         public abstract class Attribute {
13
14                 protected Attribute ()
15                 {
16                 }
17
18                 public virtual object TypeId {
19                         get {
20                                 // TODO: Implement me
21                                 return null;
22                         }
23                 }
24         }
25 }