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

AssemblyRegistrationFlags.cs « System.Runtime.InteropServices « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 479122692c78c50dbed14b664c356c104098c35d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// System.Runtime.InteropServices.AssemblyRegistrationFlags.cs
//
// Author:
//   Kevin Winchester (kwin@ns.sympatico.ca)
//
// (C) 2002 Kevin Winchester
//

namespace System.Runtime.InteropServices
{
	[Flags]
	[Serializable]
	public enum AssemblyRegistrationFlags {
		None = 0,
		SetCodeBase,
	}
}