Click or drag to resize

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
)

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: Byte
A 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