コード例 #1
0
 public int CompareTo(AlphaAdjustmentChange other)
 {
     return(parameterizedLocation.CompareTo(other.ParameterizedLocation));
 }
コード例 #2
0
ファイル: Handle.cs プロジェクト: gabbe/quickroute
 public int CompareTo(Handle other)
 {
     return(ParameterizedLocation.CompareTo(other.ParameterizedLocation));
 }
コード例 #3
0
        public int CompareTo(AdjustedWaypoint other)
        {
            int result = ParameterizedLocation.CompareTo(other.ParameterizedLocation);

            return(result != 0 ? result : Type.CompareTo(other.Type));
        }