BplusDotNet.LinkedFile.sanityCheck C# (CSharp) 메소드

sanityCheck() 개인적인 메소드

private sanityCheck ( ) : void
리턴 void
        void sanityCheck()
        {
            if (this.seekStart<0)
            {
                throw new LinkedFileException("cannot seek negative "+this.seekStart);
            }
            if (this.buffersize<MINBUFFERSIZE)
            {
                throw new LinkedFileException("buffer size too small "+this.buffersize);
            }
        }