| GameLiftManagerGameControllerConvertByteArrayIntoString Method |
Converts a byte array into a string
Namespace:
ASL
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax public string ConvertByteArrayIntoString(
byte[] _payload,
int _stringStartLocation,
int _stringLength
)
Public Function ConvertByteArrayIntoString (
_payload As Byte(),
_stringStartLocation As Integer,
_stringLength As Integer
) As String
public:
String^ ConvertByteArrayIntoString(
array<unsigned char>^ _payload,
int _stringStartLocation,
int _stringLength
)
member ConvertByteArrayIntoString :
_payload : byte[] *
_stringStartLocation : int *
_stringLength : int -> string
Parameters
- _payload
- Type: SystemByte
The byte array to be converted - _stringStartLocation
- Type: SystemInt32
The start location of the string in the byte array - _stringLength
- Type: SystemInt32
The length of the string
Return Value
Type:
StringA string
See Also