|
@@ -96,8 +96,12 @@ namespace WingServerCommon.Utilities
|
|
|
Part1 = BitConverter.ToInt64(part1Data, 0);
|
|
|
Part2 = BitConverter.ToInt64(part2Data, 0);
|
|
|
}
|
|
|
- }
|
|
|
-
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// Equals FasterUId
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="other"></param>
|
|
|
+ /// <returns></returns>
|
|
|
public bool Equals(FasterUId other)
|
|
|
{
|
|
|
return Part1 == other.Part1 && Part2 == other.Part2;
|