CustomClass.CompareTo C# (CSharp) Method

CompareTo() public method

public CompareTo ( other ) : int
return int
        public int CompareTo(CustomClass other) {
           return this.Order.CompareTo(other.Order);
        }
    }
CustomClass