Logo

Programming-Idioms

History of Idiom 171 > diff from v19 to v20

Edit summary for version 20 by silver-dragon:
[VB] simplified to be more concise

Version 19

2019-09-30, 14:27:08

Version 20

2019-09-30, 14:31:31

Idiom #171 Add an element at the end of a list

Append element x to the list s.

Idiom #171 Add an element at the end of a list

Append element x to the list s.

Extra Keywords
push grow
Extra Keywords
push grow
Code
Dim dinosaurs As New List(Of String)
dinosaurs.Add("Tyrannosaurus")
Code
s.Add(x)
Doc URL
https://docs.microsoft.com/en-us/dotnet/api/system.collections.generic.list-1.add?view=netframework-4.8
Doc URL
https://docs.microsoft.com/en-us/dotnet/api/system.collections.generic.list-1.add?view=netframework-4.8