Example #1
0
 /// <inheritdoc />
 public override int CompareTo(AStoreGame?other)
 {
     return(other switch
     {
         null => 1,
         GOGGame game => GameID.CompareTo(game.GameID),
         _ => base.CompareTo(other)
     });