BTDBTest.ODBIteratorTest.ListOfSimpleValues C# (CSharp) Method

ListOfSimpleValues() private method

private ListOfSimpleValues ( ) : void
return void
        public void ListOfSimpleValues()
        {
            using (var tr = _db.StartTransaction())
            {
                var root = tr.Singleton<VariousLists>();
                root.IntList = new List<int> { 5, 10, 2000 };
                root.StringList = new List<string> { "A", null, "AB!" };
                root.ByteList = new List<byte> { 0, 255 };
                tr.Commit();
            }
            IterateWithApprove();
        }