IDispatchConstantAttribute.cs 507 B

123456789101112131415161718192021222324
  1. //
  2. // System.Runtime.CompilerServices.IDispatchConstantAttribute.cs
  3. //
  4. // Author: Duncan Mak ([email protected])
  5. //
  6. // (C) Copyright, Ximian Inc.
  7. using System;
  8. namespace System.Runtime.CompilerServices {
  9. [Serializable]
  10. [AttributeUsage (AttributeTargets.Field | AttributeTargets.Parameter)]
  11. public sealed class IDispatchConstantAttribute : CustomConstantAttribute
  12. {
  13. public IDispatchConstantAttribute ()
  14. {
  15. }
  16. public override object Value {
  17. get { return null; } // this is correct.
  18. }
  19. }
  20. }