BTDBTest.KeyValueDBTest.EmptyTransaction C# (CSharp) 메소드

EmptyTransaction() 개인적인 메소드

private EmptyTransaction ( ) : void
리턴 void
        public void EmptyTransaction()
        {
            using (var fileCollection = new InMemoryFileCollection())
            using (IKeyValueDB db = new KeyValueDB(fileCollection))
            {
                using (var tr = db.StartTransaction())
                {
                    tr.Commit();
                }
            }
        }