AssemblyRegistrationFlags.cs 320 B

123456789101112131415161718
  1. //
  2. // System.Runtime.InteropServices.AssemblyRegistrationFlags.cs
  3. //
  4. // Author:
  5. // Kevin Winchester ([email protected])
  6. //
  7. // (C) 2002 Kevin Winchester
  8. //
  9. namespace System.Runtime.InteropServices
  10. {
  11. [Flags]
  12. [Serializable]
  13. public enum AssemblyRegistrationFlags {
  14. None = 0,
  15. SetCodeBase,
  16. }
  17. }