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