| GameLiftManagerGameControllerConvertByteArrayIntoInt Method |
Converts a byte array into an int
Namespace:
ASL
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax private int ConvertByteArrayIntoInt(
byte[] _payload,
int _startLocation,
int _length
)
Private Function ConvertByteArrayIntoInt (
_payload As Byte(),
_startLocation As Integer,
_length As Integer
) As Integer
private:
int ConvertByteArrayIntoInt(
array<unsigned char>^ _payload,
int _startLocation,
int _length
)
private member ConvertByteArrayIntoInt :
_payload : byte[] *
_startLocation : int *
_length : int -> int
Parameters
- _payload
- Type: SystemByte
The byte array to be converted - _startLocation
- Type: SystemInt32
The start location of the int in the byte array - _length
- Type: SystemInt32
The length of the int in the byte array
Return Value
Type:
Int32A single int
See Also