Example #1
0
 /// <summary>
 /// This routine determines if the ID is already registered in the system.
 /// </summary>
 /// <param name="id">The unique ID to register.</param>
 /// <returns>A boolean value.</returns>
 public static bool Exists(Guid id)
 {
     return(!_utDisposed && _userTable.GetByID(id).Rows.Count > 0);
 }