Implement StringToCoTaskMem{Ansi,Uni} (bug 58102).
[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         [AttributeUsage (AttributeTargets.Parameter)]
13         public sealed class OutAttribute : Attribute {
14
15                 public OutAttribute ()
16                 {
17                 }
18         }
19 }