Example #1
0
 void CreateNewInstances()
 {
     if (assembly == null)
     {
         return;
     }
     foreach (var type in assembly.GetTypes())
     {
         manager.synchronizedInvoke.Invoke((System.Action)(() => {
             instances.Add(manager.createInstance(type));
         }), null);
     }
 }