This language bar is your friend. Select your favorite languages!
Select your favorite languages :
- Or search :
Idiom #166 Concatenate two lists
Create the list ab containing all the elements of the list a, followed by all the elements of the list b.
- Clojure
- C++
- C#
- D
- D
- Dart
- Elixir
- Erlang
- Fortran
- Go
- Go
- Go
- Haskell
- JS
- Java
- Java
- Kotlin
- Lisp
- Lua
- Lua
- Obj-C
- PHP
- Pascal
- Perl
- Python
- Python
- Ruby
- Rust
- Scala
- Scala
- Scheme
- Smalltalk
var list1 = new List<int>(){1,2,3};
var list2 = new List<int>(){4,5,6};
var list3 = list1.Concat(list2);
This returns new array.
Use AddRange() to add items to the same array
Use AddRange() to add items to the same array