//Db4oUtil.dumpResults(fixture().db(), results);
        private object InitGenericObjects()
        {
            GenericClass  personClass = InitGenericClass();
            IReflectField surname     = personClass.GetDeclaredField("surname");
            IReflectField birthdate   = personClass.GetDeclaredField("birthdate");
            //ReflectField nArray = personClass.getDeclaredField("nArray");
            object person = personClass.NewInstance();

            surname.Set(person, "John");
            //		/int[][] arrayData = new int[2][2];
            // todo: FIXME: nArray doesn't work
            // nArray.set(person, arrayData);
            birthdate.Set(person, new DateTime());
            Fixture().Db().Store(person);
            Fixture().Db().Commit();
            return(person);
        }