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