Beispiel #1
0
 /// <summary>
 /// Assign the new upper bound value for this range. Current upper bound must not be open to call this method.
 /// </summary>
 /// <param name="newUpperBoundValue">The new upper bound value to assign</param>
 public void SetUpperBoundValue(int newUpperBoundValue)
 {
     UpperBound.SetValue(newUpperBoundValue);
 }
Beispiel #2
0
 /// <summary>
 /// Assign the new lower bound value for this range. Current lower bound must not be open to call this method.
 /// </summary>
 /// <param name="newLowerBoundValue">The new lower bound value to assign</param>
 public void SetLowerBoundValue(int newLowerBoundValue)
 {
     LowerBound.SetValue(newLowerBoundValue);
 }