Ejemplo n.º 1
0
 public void PreInitialize(Type type)
 {
     objects = (Object[])type.GetCustomAttributes(typeof(ClassAttribute), true);
     foreach (Object obj in objects)
     {
         ClassAttribute classAttribute = (ClassAttribute)obj;
         classAttribute.BeforeInstantiation(type);
     }
 }