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