9b3e028337a59d9779f6b748908859e7eb4029c0
[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         public sealed class OutAttribute : Attribute {
13
14                 public OutAttribute ()
15                 {
16                 }
17
18                 public override object TypeId {
19                         get {
20                                 // TODO: Implement me
21                                 return null;
22                         }
23                 }
24         }
25 }