Class CommonTool
Utility for common operations.
Inheritance
System.Object
CommonTool
Namespace: BlueprintCore.Utils
Assembly: BlueprintCore.dll
Syntax
public static class CommonTool
Methods
| Improve this Doc View SourceAppend<T>(T[], T[])
Returns an array with the given values appended.
Declaration
public static T[] Append<T>(T[] array, params T[] values)
Parameters
| Type | Name | Description |
|---|---|---|
| T[] | array | |
| T[] | values |
Returns
| Type | Description |
|---|---|
| T[] |
Type Parameters
| Name | Description |
|---|---|
| T |
Remarks
Remember that this does not do an in-place modification of the array.
myArray = myArray.AppendToArray(otherArray);