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