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