2002-01-05 Ravi Pratap <ravi@ximian.com>
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / OutAttribute.cs
1 //
2 // System.Runtime.InteropServices.OutAttribute.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.Runtime.InteropServices {
11
12         [MonoTODO]
13         public sealed class OutAttribute : Attribute {
14
15                 public OutAttribute ()
16                 {
17                 }
18                 
19                 public override object TypeId {
20                         get {
21                                 // TODO: Implement me
22                                 return null;
23                         }
24                 }
25         }
26 }