Browse Source

add FasterUId commit

MIke 3 years ago
parent
commit
579b6580b8
1 changed files with 6 additions and 2 deletions
  1. 6 2
      Utilities/IdHelper.cs

+ 6 - 2
Utilities/IdHelper.cs

@@ -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;