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