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