Exemplo 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);
     }
 }
Exemplo n.º 2
0
 Cursor(Cursor from)
 {
     _rootNode = from._rootNode;
     _stack    = new StructList <CursorItem>(from._stack);
 }
Exemplo n.º 3
0
 public Cursor(RootNode rootNode)
 {
     _rootNode = rootNode;
     _stack    = new StructList <CursorItem>();
 }