| 123456789101112131415161718 |
- //
- // System.Runtime.InteropServices.AssemblyRegistrationFlags.cs
- //
- // Author:
- // Kevin Winchester ([email protected])
- //
- // (C) 2002 Kevin Winchester
- //
- namespace System.Runtime.InteropServices
- {
- [Flags]
- [Serializable]
- public enum AssemblyRegistrationFlags {
- None = 0,
- SetCodeBase,
- }
- }
|