Example #1
0
 /// <summary>
 ///     Check if the variable is an empty string
 /// </summary>
 /// <param name="variable">The value to check</param>
 /// <param name="variableName">The name of the variable being checked</param>
 /// <exception cref="ArgumentException" />
 /// <exception cref="ArgumentNullException" />
 public static void CheckForEmptyString(string variable, string variableName)
 {
     CheckForNullReference(variable, variableName);
     CheckForNullReference(variableName, "variableName");
     if (variable.Length == 0)
     {
         throw new ArgumentException(
                   CommonResourceUtil.GetString(CommonResource.ExceptionEmptyString, variableName));
     }
 }
Example #2
0
 /// <summary>
 ///     Check variable to determine if it is within, or equal to, the min and max range.
 /// </summary>
 /// <param name="value">The value to check</param>
 /// <param name="min">'value' must be equal to or greater then this value</param>
 /// <param name="max">'value' must be equal to or less then this value</param>
 /// <exception cref="ArgumentOutOfRangeException" />
 public static void CheckForOutOfRangeException(long value, long min, long max)
 {
     if (value < min ||
         value > max)
     {
         throw new ArgumentOutOfRangeException(
                   CommonResourceUtil.GetString(
                       CommonResource.ExceptionIndexOutOfRange,
                       value,
                       min,
                       max));
     }
 }