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