BTDB.KVDBLayer.InMemoryFileCollection.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;
                    Pos = 0;
                    Buf = new byte[OneBufSize];
                    End = OneBufSize;
                    lock (_file._lock)
                    {
                        _file._data.Add(Buf);
                    }
                }