Implement StringToCoTaskMem{Ansi,Uni} (bug 58102).
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / PreserveSigAttribute.cs
1 // System.Runtime.InteropServices.PreserveSigAttribute.cs
2 //
3 // Name: Duncan Mak  (duncan@ximian.com)
4 //
5 // (C) Ximian, Inc.
6 //
7
8 using System;
9
10 namespace System.Runtime.InteropServices {
11
12         [AttributeUsage (AttributeTargets.Method)]
13         public sealed class PreserveSigAttribute : Attribute
14         {
15                 public PreserveSigAttribute ()
16                 {
17                 }
18         }
19 }