public AIONode(AIOInfo data)
        {
            //this.info = info;
            //this.isFile = isFile;
            this.data = data;

            prevNode     = null;
            childNode    = null;
            nextNode     = null;
            prevIsParent = false;
        }
Ejemplo n.º 2
0
 public void Clone(AIOInfo src)
 {
     this.ID = new string(src.ID.ToCharArray());
     this.Name = new string(src.Name.ToCharArray());
     this.isFile = src.isFile;
 }
Ejemplo n.º 3
0
 public void Clone(AIOInfo src)
 {
     this.ID     = new string(src.ID.ToCharArray());
     this.Name   = new string(src.Name.ToCharArray());
     this.isFile = src.isFile;
 }
        public AIONode(AIOInfo data)
        {
            //this.info = info;
            //this.isFile = isFile;
            this.data = data;

            prevNode = null;
            childNode = null;
            nextNode = null;
            prevIsParent = false;
        }