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