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