Show / Hide Table of Contents

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 Source

Append<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.
Typical usage:

  myArray = myArray.AppendToArray(otherArray);
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX