I´m using Type.GetType() to create a instance.
This works:
var type = Type.GetType("Test.ClassServices.HowService, Test");
But, this doesn´t work. It returns null:
var name = "How";
var type = Type.GetType("Test.ClassServices."+name+"Service, Test");
No-repro. Run this sample:
From Type.GetType() on MSDN:
Based on that and my example above, I believe it’s most likely that the value of
nameisn’t matching the name of the class perfectly.