public int CompareTo(IListBoxItem other) { WaypointResource way = other as WaypointResource; if (way != null) { return(CompareTo(way)); } return(0); }
public int CompareTo(WaypointResource other) { return(Name.CompareTo(other.Name)); }
public int CompareTo(WaypointResource other) { return Name.CompareTo(other.Name); }