The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
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.
array<Byte>^ bytes = gcnew array<Byte> { Byte::MinValue, 100, 200, Byte::MaxValue }; bool result; for each (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: