Logo

Programming-Idioms

  • C#

Idiom #134 Create a new list

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

items = list((a, b, c))
items = [a, b, c]
using System.Collections.Generic;
var items = new List<T>{a,b,c};

T is the type of the elements
T[] items = new T[] { a, b, c };

items is an array with elements of type T
(def items (list a b c))

New implementation...