Exemple #1
0
 public RangeWrapper(RangeWrapper other)
     : this(RangeUtils.GetCopy(other.Range))
 {
 }
 /// <summary>
 /// Gets a copy of the range, so that modifying parameters of either of them will not alter the other.
 /// </summary>
 /// <param name="range">The range.</param>
 /// <returns></returns>
 public static Range GetCopy(this Range range)
 {
     return(RangeUtils.GetCopy(range));
 }