BplusDotNet.BplusTree.BplusTree C# (CSharp) 메소드

BplusTree() 공개 메소드

public BplusTree ( ITreeIndex tree ) : System
tree ITreeIndex
리턴 System
        public BplusTree(ITreeIndex tree)
        {
            if (!(tree is BplusTreeBytes) && this.checkTree())
            {
                throw new BplusTreeException("Bplustree (superclass) can only wrap BplusTreeBytes, not other ITreeIndex implementations");
            }
            this.tree = tree;
        }