public static TextViewPosition Max(TextViewPosition a, TextViewPosition b) { return(a > b ? a : b); }
//public bool IsEmpty { get { return Line <= 0 && Column <= 0; } } public bool Equals(TextViewPosition other) { return(_column == other._column && _line == other._line); }
public static TextViewPosition Min(TextViewPosition a, TextViewPosition b) { return(a > b ? b : a); }