Skip to content

Instantly share code, notes, and snippets.

@ochilab
Created January 31, 2014 12:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ochilab/8730968 to your computer and use it in GitHub Desktop.
Save ochilab/8730968 to your computer and use it in GitHub Desktop.
C#:配列の連結
int[] intArray1 = { 1,2,3,4,5};
int[] intAray2 = { 6,7,8,9 };
int[] result = Enumerable.Concat(intArray1, intArray2).ToArray();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment