An open API service indexing awesome lists of open source software.

https://github.com/kuritaro1122/mergearray

配列と配列を簡単に結合するメソッド。要素を一つずつ加えることも可能。
https://github.com/kuritaro1122/mergearray

csharp unity unity-scripts

Last synced: about 2 months ago
JSON representation

配列と配列を簡単に結合するメソッド。要素を一つずつ加えることも可能。

Awesome Lists containing this project

README

          

# MergeArray
配列と配列を簡単に結合するメソッド。要素を一つずつ加えることも可能。

# Example
```
int[] a = new int[] {1, 2, 3};
a = MergeArrayClass.MergeArray(a, a); //1, 2, 3, 1, 2, 3

int[] b = new int[] {2, 4, 6};
int[] c = MergeArrayClass.MergeArray(b, 1, 3, 5); // 2, 4, 6, 1, 3, 5
```