コード例 #1
0
        public void GetClassesPropertiesReadable()
        {
            List <Type> types = MappingController.GetAllMapableTypes();

            if (types.Count > 0)
            {
                List <PropertyInfo> properties = MappingController.GetClassesPropertiesReadable(types[0].FullName);
                Assert.Greater(properties.Count, 0);
                Console.WriteLine(properties.Count.ToString() + " Properties were returned");
            }
        }