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