BplusDotNet.xBplusTreeBytes.Initialize C# (CSharp) Method

Initialize() public static method

public static Initialize ( System treefile, System blockfile, int PrefixLength ) : xBplusTreeBytes
treefile System
blockfile System
PrefixLength int
return xBplusTreeBytes
        public static xBplusTreeBytes Initialize(System.IO.Stream treefile, System.IO.Stream blockfile, int PrefixLength)
        {
            return new xBplusTreeBytes(
                BplusTreeBytes.Initialize(treefile, blockfile, PrefixLength),
                PrefixLength);
        }

Same methods

xBplusTreeBytes::Initialize ( System treefile, System blockfile, int PrefixLength, int CultureId ) : xBplusTreeBytes
xBplusTreeBytes::Initialize ( System treefile, System blockfile, int PrefixLength, int CultureId, int nodesize, int buffersize ) : xBplusTreeBytes
xBplusTreeBytes::Initialize ( string treefileName, string blockfileName, int PrefixLength ) : xBplusTreeBytes
xBplusTreeBytes::Initialize ( string treefileName, string blockfileName, int PrefixLength, int CultureId ) : xBplusTreeBytes
xBplusTreeBytes::Initialize ( string treefileName, string blockfileName, int PrefixLength, int CultureId, int nodesize, int buffersize ) : xBplusTreeBytes