Struct LinkID
Represents a specific type as a link, and can be used for link related queries
public readonly struct LinkID : IEquatable<LinkID>
- Implements
- Inherited Members
Properties
Type
The type that this LinkID represents
public Type Type { get; }
Property Value
Methods
Equals(LinkID)
Checks if this LinkID instance represents the same type as other
public bool Equals(LinkID other)
Parameters
otherLinkIDThe link to compare against
Returns
Equals(object?)
Checks if this LinkID instance represents the same type as other
public override bool Equals(object? other)
Parameters
otherobjectThe link to compare against
Returns
GetHashCode()
Gets the hashcode of this LinkID
public override int GetHashCode()
Returns
Operators
operator ==(LinkID, LinkID)
Checks if two LinkIDs represent the same type
public static bool operator ==(LinkID left, LinkID right)
Parameters
Returns
operator !=(LinkID, LinkID)
Checks if two LinkIDs represent a different type
public static bool operator !=(LinkID left, LinkID right)