Exemple #1
0
 public static short ToShort(int value)
 {
     Verify.That(short.MinValue <= value && value <= short.MaxValue);
     return((short)value);
 }