Logo

Programming-Idioms

  • PHP
  • C#

Idiom #134 Create a new list

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

T[] items = new T[] { a, b, c };

items is an array with elements of type T
using System.Collections.Generic;
var items = new List<T>{a,b,c};

T is the type of the elements
$items = [$a, $b, $c];

$items will have $a, $b and $c in this order.
(def items (list a b c))

New implementation...