Struct Id
- Namespace
- Xabbo
- Assembly
- Xabbo.Common.dll
Represents a numeric identifier.
public readonly record struct Id : IComparable<Id>, IComparable, IEquatable<Id>
- Implements
- Inherited Members
Remarks
This type is represented as the following:
Fields
MaxValue
The maximum value of an Id.
public const long MaxValue = 9223372036854775807
Field Value
MinValue
The minimum value of and Id.
public const long MinValue = -9223372036854775808
Field Value
Methods
CompareTo(object?)
Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.
public int CompareTo(object? obj)
Parameters
obj
objectAn object to compare with this instance.
Returns
- int
A value that indicates the relative order of the objects being compared. The return value has these meanings:
Value Meaning Less than zero This instance precedes obj
in the sort order.Zero This instance occurs in the same position in the sort order as obj
.Greater than zero This instance follows obj
in the sort order.
Exceptions
- ArgumentException
obj
is not the same type as this instance.
CompareTo(Id)
Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.
public int CompareTo(Id other)
Parameters
other
IdAn object to compare with this instance.
Returns
- int
A value that indicates the relative order of the objects being compared. The return value has these meanings:
Value Meaning Less than zero This instance precedes other
in the sort order.Zero This instance occurs in the same position in the sort order as other
.Greater than zero This instance follows other
in the sort order.
ToString()
Returns the value of this Id as a string.
public override string ToString()
Returns
TryParse(string?, out Id)
Parses a string representation of an Id to its value and returns whether the conversion was successful.
public static bool TryParse(string? s, out Id id)
Parameters
Returns
Operators
explicit operator Id(string)
public static explicit operator Id(string s)
Parameters
s
string
Returns
implicit operator Id(long)
public static implicit operator Id(long value)
Parameters
value
long
Returns
implicit operator long(Id)
public static implicit operator long(Id id)
Parameters
id
Id