System.Reflection.Metadata.ConstantHandle
namespace System.Reflection.Metadata
{
public struct ConstantHandle : IEquatable<ConstantHandle>
{
public bool IsNil { get; }
public static implicit operator Handle(ConstantHandle handle);
public static implicit operator EntityHandle(ConstantHandle handle);
public static explicit operator ConstantHandle(Handle handle);
public static explicit operator ConstantHandle(EntityHandle handle);
public static bool operator ==(ConstantHandle left, ConstantHandle right);
public bool Equals(ConstantHandle other);
public static bool operator !=(ConstantHandle left, ConstantHandle right);
}
}