BTDB.KVDBLayer.OnDiskFileCollection.File.Writer.Writer C# (CSharp) Method

Writer() public method

public Writer ( File file ) : System
file System.IO.File
return System
                public Writer(File file)
                {
                    _file = file;
                    Buf = new byte[32768];
                    End = Buf.Length;
                    Ofs = (ulong)_file._stream.Length;
                }