Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PreserveSigAttribute.cs « System.Runtime.InteropServices « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 691cef7c7dfcd2bf68d95e9dbf5cf488cb55b46e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// System.Runtime.InteropServices.PreserveSigAttribute.cs
//
// Name: Duncan Mak  (duncan@ximian.com)
//
// (C) Ximian, Inc.
//

using System;

namespace System.Runtime.InteropServices {

	[AttributeUsage (AttributeTargets.Method)]
	public sealed class PreserveSigAttribute : Attribute
	{
		public PreserveSigAttribute ()
		{
		}
	}
}