http://bugzilla.novell.com/show_bug.cgi?id=631409

http://bugzilla.novell.com/show_bug.cgi?id=631409#c1


--- Comment #1 from Pablo Ruiz <[email protected]> 2010-08-16 10:26:41 UTC ---
As a temporal WOR modifying ServiceConfigurator::Create() to instantiate
ServiceController<> using reflection seems to work fine.

   Type d1 = typeof(ServiceController<>);
   Type[] typeArgs = { typeof(T) };
   Type makeme = d1.MakeGenericType(typeArgs);
   ServiceController<T> serviceController =    
Activator.CreateInstance(makeme) as ServiceController<T>;

-- 
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to