BplusDotNet.BplusTreeBytes.Initialize C# (CSharp) 메소드

Initialize() 공개 정적인 메소드

public static Initialize ( System treefile, System blockfile, int KeyLength ) : BplusTreeBytes
treefile System
blockfile System
KeyLength int
리턴 BplusTreeBytes
        public static BplusTreeBytes Initialize(System.IO.Stream treefile, System.IO.Stream blockfile, int KeyLength)
        {
            int CultureId = System.Globalization.CultureInfo.InvariantCulture.LCID;
            return Initialize(treefile, blockfile, KeyLength, CultureId, DEFAULTNODESIZE, DEFAULTBLOCKSIZE);
        }

Same methods

BplusTreeBytes::Initialize ( System treefile, System blockfile, int KeyLength, int CultureId ) : BplusTreeBytes
BplusTreeBytes::Initialize ( System treefile, System blockfile, int KeyLength, int CultureId, int nodesize, int buffersize ) : BplusTreeBytes
BplusTreeBytes::Initialize ( string treefileName, string blockfileName, int KeyLength ) : BplusTreeBytes
BplusTreeBytes::Initialize ( string treefileName, string blockfileName, int KeyLength, int CultureId ) : BplusTreeBytes
BplusTreeBytes::Initialize ( string treefileName, string blockfileName, int KeyLength, int CultureId, int nodesize, int buffersize ) : BplusTreeBytes

Usage Example

예제 #1
0
        public static BplusTree Initialize(Stream treefile, Stream blockfile, int keyLength, int cultureId,
                                           int nodesize, int buffersize)
        {
            BplusTreeBytes tree = BplusTreeBytes.Initialize(treefile, blockfile, keyLength, cultureId, nodesize, buffersize);

            return(new BplusTree(tree));
        }
All Usage Examples Of BplusDotNet.BplusTreeBytes::Initialize