Logo

Programming-Idioms

History of Idiom 134 > diff from v30 to v31

Edit summary for version 31 by _darkcha0s:
[Csharp] Removed underline from items

Version 30

2019-09-26, 15:27:01

Version 31

2019-09-26, 15:27:29

Idiom #134 Create a new list

Declare and initialize a new list items, containing 3 elements a, b, c.

Idiom #134 Create a new list

Declare and initialize a new list items, containing 3 elements a, b, c.

Extra Keywords
array vector slice tuple
Extra Keywords
array vector slice tuple
Code
List<T> _items = new List<T>(){a, b, c}
Code
List<T> items = new List<T>(){a, b, c}