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