Message.GetUInts Method
Namespace: Riptide
Assembly: RiptideNetworking.dll
Overloads
GetUInts() | Retrieves a uint array from the message. |
GetUInts(int) | Retrieves a uint array from the message. |
GetUInts(uint[], int) | Populates a uint array with uints retrieved from the message. |
GetUInts(int, uint[], int) | Populates a uint array with uints retrieved from the message. |
GetUInts()
Retrieves a uint array from the message.
public uint[] GetUInts()
Returns
uint[] | The array that was retrieved. |
GetUInts(int)
Retrieves a uint array from the message.
public uint[] GetUInts(int amount)
Parameters
int | amount |
The amount of uints to retrieve. |
Returns
uint[] | The array that was retrieved. |
GetUInts(uint[], int)
Populates a uint array with uints retrieved from the message.
public void GetUInts(uint[] intoArray, int startIndex = 0)
Parameters
uint[] | intoArray |
The array to populate. |
int | startIndex |
The position at which to start populating the array. |
GetUInts(int, uint[], int)
Populates a uint array with uints retrieved from the message.
public void GetUInts(int amount, uint[] intoArray, int startIndex = 0)
Parameters
int | amount |
The amount of uints to retrieve. |
uint[] | intoArray |
The array to populate. |
int | startIndex |
The position at which to start populating the array. |