System.Reflection.Metadata.Ecma335.LabelHandle
namespace System.Reflection.Metadata.Ecma335
{
internal struct LabelHandle : IEquatable<LabelHandle>
{
public bool IsNil { get; }
public bool Equals(LabelHandle other);
public static bool operator ==(LabelHandle left, LabelHandle right);
public static bool operator !=(LabelHandle left, LabelHandle right);
}
}