Convert.ToBoolean Method (Byte)
.NET Framework (current version)
Converts the value of the specified 8-bit unsigned integer to an equivalent Boolean value.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
-
Type:
System.Byte
The 8-bit unsigned integer to convert.
The following example converts an array of Byte values to Boolean values.
byte[] bytes = { Byte.MinValue, 100, 200, Byte.MaxValue }; bool result; foreach (byte byteValue in bytes) { result = Convert.ToBoolean(byteValue); Console.WriteLine("{0,-5} --> {1}", byteValue, result); } // The example displays the following output: // 0 --> False // 100 --> True // 200 --> True // 255 --> True
Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: