This documentation is archived and is not being maintained.
BitConverter::GetBytes Method (Boolean)
Visual Studio 2010
Returns the specified Boolean value as an array of bytes.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
- Type: System::Boolean
A Boolean value.
The following code example converts the bit patterns of Boolean values to Byte arrays with the GetBytes method.
// Example of the BitConverter::GetBytes( bool ) method. using namespace System; // Convert a bool argument to a byte array and display it. void GetBytesBool( bool argument ) { array<Byte>^byteArray = BitConverter::GetBytes( argument ); Console::WriteLine( "{0,10}{1,16}", argument, BitConverter::ToString( byteArray ) ); } int main() { Console::WriteLine( "This example of the BitConverter::GetBytes( bool ) " "\nmethod generates the following output.\n" ); Console::WriteLine( "{0,10}{1,16}", "bool", "byte array" ); Console::WriteLine( "{0,10}{1,16}", "----", "----------" ); // Convert bool values and display the results. GetBytesBool( false ); GetBytesBool( true ); } /* This example of the BitConverter::GetBytes( bool ) method generates the following output. bool byte array ---- ---------- False 00 True 01 */
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: