예제 #1
0
 /// <summary>
 /// Returns the next unique Id for a new Record
 /// </summary>
 public static long NextId()
 {
     return(_idGenerator.Next());
 }
예제 #2
0
 /// <summary>
 /// Returns the next unique Id for a new Character
 /// </summary>
 public static uint NextId()
 {
     return((uint)_idGenerator.Next());
 }