Exemplo n.º 1
0
        public void Create(string path)
        {
            lock (_lock)
            {
                _path = path;
                _file = FixedFile <BinaryStorageClass> .Create(path, 1);

                _nextIndex = 1;
            }
        }
Exemplo n.º 2
0
 public void Create(string path)
 {
     _path = path;
     _file = FixedFile <BinaryDataStorageClass> .Create(path, 1);
 }