using System;
using System.Runtime.InteropServices;
namespace System.Runtime.CompilerServices
{
/// Indicates that the default value for the attributed field or parameter is an instance of , where the is null.
// Token: 0x0200029D RID: 669
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Parameter, Inherited = false)]
[ComVisible(true)]
[Serializable]
public sealed class IDispatchConstantAttribute : CustomConstantAttribute
{
/// Gets the IDispatch constant stored in this attribute.
/// The IDispatch constant stored in this attribute. Only null is allowed for an IDispatch constant value.
///
///
///
// Token: 0x17000631 RID: 1585
// (get) Token: 0x060020F3 RID: 8435 RVA: 0x00078C3C File Offset: 0x00076E3C
public override object Value
{
get
{
return null;
}
}
}
}