CSharp examples for System:Int32
Check if a given number is greater then and less then a range. x > y && x < z
using System.Globalization; using System.Collections.Generic; using System.Collections; using System;//from w w w .j a va 2 s .co m public class Main{ /// <summary> /// Check if a given number is greater then and less then a range. /// x > y && x < z /// </summary> /// <param name="number"></param> /// <param name="rangeStart"></param> /// <param name="rangeStop"></param> /// <returns></returns> public static bool IsInExclusiveRange (int number, int rangeStart, int rangeStop) { return number > rangeStart && number < rangeStop; } }