Ejemplo n.º 1
0
 public FWList(T itemZero, T itemOne)
 {
     // Reverse order when constructing block because the second argument is
     // conceptually added second, so it will be at index [0].
     Block      = new VListBlockOfTwo <T>(itemOne, itemZero, true);
     LocalCount = 2;
 }
Ejemplo n.º 2
0
        }                         // empty list is all null

        public WList(T itemZero, T itemOne)
        {
            Block      = new VListBlockOfTwo <T>(itemZero, itemOne, true);
            LocalCount = 2;
        }