Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 26, 2021 00:29
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 parzibyte/7228fc23c126771b7230e1dad6c35f55 to your computer and use it in GitHub Desktop.
Save parzibyte/7228fc23c126771b7230e1dad6c35f55 to your computer and use it in GitHub Desktop.
string[] nombres = { "Luis", "María José", "Aloy" };
string[] otrosNombres = { "Leon", "Claire", "Jill" };
string[] todosLosNombres = new string[nombres.Length + otrosNombres.Length];
nombres.CopyTo(todosLosNombres, 0);
otrosNombres.CopyTo(todosLosNombres, nombres.Length);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment