| GameLiftManagerCombineByteArrayWithoutLengths Method |
Combines byte arrays so they can be sent as one byte array to other users
Namespace:
ASL
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax public byte[] CombineByteArrayWithoutLengths(
byte[] _first,
byte[] _second
)
Public Function CombineByteArrayWithoutLengths (
_first As Byte(),
_second As Byte()
) As Byte()
public:
array<unsigned char>^ CombineByteArrayWithoutLengths(
array<unsigned char>^ _first,
array<unsigned char>^ _second
)
member CombineByteArrayWithoutLengths :
_first : byte[] *
_second : byte[] -> byte[]
Parameters
- _first
- Type: SystemByte
The first byte array - _second
- Type: SystemByte
The second byte array
Return Value
Type:
ByteA single byte array containing just the original byte arrays
See Also