Esempio n. 1
0
 public StructList(StructList <T> from) : this()
 {
     if (from.Count > 0)
     {
         _count = from.Count;
         _a     = new T[_count];
         Array.Copy(from._a, _a, _count);
     }
 }
Esempio n. 2
0
 public Cursor(RootNode rootNode)
 {
     _rootNode = rootNode;
     _stack    = new StructList <CursorItem>();
 }
Esempio n. 3
0
 Cursor(Cursor from)
 {
     _rootNode = from._rootNode;
     _stack    = new StructList <CursorItem>(from._stack);
 }