Logo

Programming-Idioms

History of Idiom 224 > diff from v22 to v23

Edit summary for version 23 by Kit Grose:
New C# implementation by user [Kit Grose]

Version 22

2020-07-20, 09:00:13

Version 23

2020-09-07, 00:48:04

Idiom #224 Add element to the beginning of the list

Insert element x at the beginning of list items.

Idiom #224 Add element to the beginning of the list

Insert element x at the beginning of list items.

Extra Keywords
prepend prefix start
Extra Keywords
prepend prefix start
Code
items.Insert(0, x);
Comments bubble
items.Prepend(x) may be more suitable if you're enumerating items at the time, but it doesn't modify the collection.
Doc URL
https://docs.microsoft.com/en-us/dotnet/api/system.collections.generic.list-1.insert