CustomConstantAttribute.cs 418 B

123456789101112131415161718192021
  1. //
  2. // System.Runtime.CompilerServices.CustomConstantAttribute.cs
  3. //
  4. // Author: Duncan Mak ([email protected])
  5. //
  6. // (C) Copyright, Ximian Inc.
  7. using System;
  8. namespace System.Runtime.CompilerServices {
  9. [AttributeUsage (AttributeTargets.Class)] [Serializable]
  10. public abstract class CustomConstantAttribute : Attribute
  11. {
  12. protected CustomConstantAttribute ()
  13. {
  14. }
  15. public abstract object Value { get; }
  16. }
  17. }