SetupFromExistingStream() 공개 정적인 메소드

public static SetupFromExistingStream ( System fromfile ) : LinkedFile
fromfile System
리턴 LinkedFile
예제 #1
0
        public static BplusTreeBytes ReOpen(System.IO.Stream treefile, System.IO.Stream blockfile)
        {
            BplusTreeLong tree    = BplusTreeLong.SetupFromExistingStream(treefile);
            LinkedFile    archive = LinkedFile.SetupFromExistingStream(blockfile);

            return(new BplusTreeBytes(tree, archive));
        }