  | GameLiftManagerConvertBoolToByteArray Method  | 
 
            Converts a bool into a byte array
            
 
    Namespace: 
   ASL
    Assembly:
   Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntaxpublic byte[] ConvertBoolToByteArray(
	bool _bool
)
Public Function ConvertBoolToByteArray ( 
	_bool As Boolean
) As Byte()
public:
array<unsigned char>^ ConvertBoolToByteArray(
	bool _bool
)
member ConvertBoolToByteArray : 
        _bool : bool -> byte[] 
Parameters
- _bool
 - Type: SystemBoolean
The bool to convert into a byte array 
Return Value
Type: 
ByteA byte array representing a boolean value
See Also