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