Exemplo n.º 1
0
 /// <summary>   Returns a string that represents the cell range. </summary>
 ///
 /// <returns>   A cell range expressed as a string </returns>
 public override string ToString()
 {
     return(ULCell.ToString() + ":" + LRCell.ToString());
 }
Exemplo n.º 2
0
 /// <summary>   Serves as the default hash function. </summary>
 ///
 /// <returns>   A hash code for the cell range. </returns>
 public override int GetHashCode()
 {
     return(ULCell.GetHashCode() ^ LRCell.GetHashCode());
 }