Exemplo n.º 1
0
		public static uint CapValue(this uint value, uint min) {
			return value.CapValue(min, uint.MaxValue);
		}
Exemplo n.º 2
0
		public static ushort CapValue(this ushort value, ushort min) {
			return value.CapValue(min, ushort.MaxValue);
		}
Exemplo n.º 3
0
		public static int CapValue(this int value, int min) {
			return value.CapValue(min, int.MaxValue);
		}