예제 #1
0
 /// <summary>
 /// Compare two Scout based on how long they have been scouts.
 /// </summary>
 /// <param name="other">The other scout</param>
 /// <returns></returns>
 public int CompareTo(Scout other)
 {
     return(RegistrationDate.CompareTo(other.RegistrationDate));
 }