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. This class cannot be inherited.
// Token: 0x0200029E RID: 670
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Parameter, Inherited = false)]
[ComVisible(true)]
[Serializable]
public sealed class IUnknownConstantAttribute : CustomConstantAttribute
{
/// Gets the IUnknown constant stored in this attribute.
/// The IUnknown constant stored in this attribute. Only null is allowed for an IUnknown constant value.
// Token: 0x17000632 RID: 1586
// (get) Token: 0x060020F5 RID: 8437 RVA: 0x00078C48 File Offset: 0x00076E48
public override object Value
{
get
{
return null;
}
}
}
}