Ejemplo n.º 1
0
        /// <summary>
        /// Tests the entire class TypeCreator
        /// </summary>
        /// <returns>Result of test</returns>
        public bool TestClass()
        {
            TypeCreator typeCreator = new TypeCreator(listOfProperties);

            if (typeCreator.NewClassType.GetProperty("name").PropertyType.AssemblyQualifiedName == typeof(String).AssemblyQualifiedName)
                return true;
            return false;
        }
Ejemplo n.º 2
0
 private Factory(ObservableCollection<ColumnType> listOfProperties)
 {
     runtimeType = new TypeCreator(listOfProperties);
 }