| GameLiftManagerCombineByteArrays Method |
Combines byte arrays so they can be sent as one byte array to other users. Can be called with 2 or more byte[] arguments.
Note that this method supports a variable number of arguments.
Namespace:
ASL
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax public byte[] CombineByteArrays(
byte[] _first,
byte[] _second,
params byte[][] arrays
)
Public Function CombineByteArrays (
_first As Byte(),
_second As Byte(),
ParamArray arrays As Byte()()
) As Byte()
public:
array<unsigned char>^ CombineByteArrays(
array<unsigned char>^ _first,
array<unsigned char>^ _second,
... array<array<unsigned char>^>^ arrays
)
member CombineByteArrays :
_first : byte[] *
_second : byte[] *
arrays : byte[][] -> byte[]
Parameters
- _first
- Type: SystemByte
The first byte array - _second
- Type: SystemByte
The second byte array - arrays
- Type: SystemByte
Additional byte arrays to combine
Return Value
Type:
ByteA single byte array containing the original byte arrays and length information about them so that they can be properly decoded when received by users
See Also