| GameLiftManagerGameControllerConvertByteArrayIntoBool Method |
Converts a byte array into a boolean variable
Namespace:
ASL
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax private bool ConvertByteArrayIntoBool(
byte[] _payload,
int _boolStartLocation,
int _boolLength
)
Private Function ConvertByteArrayIntoBool (
_payload As Byte(),
_boolStartLocation As Integer,
_boolLength As Integer
) As Boolean
private:
bool ConvertByteArrayIntoBool(
array<unsigned char>^ _payload,
int _boolStartLocation,
int _boolLength
)
private member ConvertByteArrayIntoBool :
_payload : byte[] *
_boolStartLocation : int *
_boolLength : int -> bool
Parameters
- _payload
- Type: SystemByte
The byte array to be converted - _boolStartLocation
- Type: SystemInt32
The start location of the boolean in the byte array - _boolLength
- Type: SystemInt32
How length of the bool variable
Return Value
Type:
BooleanA single bool
See Also