| 123456789101112131415161718192021222324 |
- //
- // System.Runtime.CompilerServices.IDispatchConstantAttribute.cs
- //
- // Author: Duncan Mak ([email protected])
- //
- // (C) Copyright, Ximian Inc.
- using System;
- namespace System.Runtime.CompilerServices {
- [Serializable]
- [AttributeUsage (AttributeTargets.Field | AttributeTargets.Parameter)]
- public sealed class IDispatchConstantAttribute : CustomConstantAttribute
- {
- public IDispatchConstantAttribute ()
- {
- }
- public override object Value {
- get { return null; } // this is correct.
- }
- }
- }
|