Converts short to Boolean value.
using System;
using System.Globalization;
public class Example
{
public static void Main()
{
short[] numbers = { Int16.MinValue, -1, -154, 0, 216, 2,
Int16.MaxValue };
bool result;
foreach (short number in numbers)
{
result = Convert.ToBoolean(number);
Console.WriteLine("{0,-7:N0} --> {1}", number, result);
}
}
}
Related examples in the same category