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