Пример #1
0
        public InstanceTree LoadData(Stream stream)
        {
            InstanceTree   tree     = new InstanceTree();
            StructInstance instance = new StructInstance(this, tree, stream, stream.Position);

            tree.AddChild(instance);
            return(tree);
        }
Пример #2
0
 public InstanceTree LoadData(Stream stream)
 {
     InstanceTree tree = new InstanceTree();
     StructInstance instance = new StructInstance(this, tree, stream, stream.Position);
     tree.AddChild(instance);
     return tree;
 }