Logo

Programming-Idioms

History of Idiom 44 > diff from v32 to v33

Edit summary for version 33 by TotallyGatsby:
New Csharp implementation by user [TotallyGatsby]

Version 32

2018-08-06, 15:25:51

Version 33

2019-09-26, 16:11:54

Idiom #44 Insert element in list

Insert element x at position i in list s. Further elements must be shifted to the right.

Illustration

Idiom #44 Insert element in list

Insert element x at position i in list s. Further elements must be shifted to the right.

Illustration
Imports
using System.Collections.Generic;
Code
s.Insert(i, x);
Doc URL
https://docs.microsoft.com/en-us/dotnet/api/system.collections.generic.list-1.insert?view=netframework-4.8