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