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