Is it possible to get the custom attributes from the class name as a string?
something like this (which doesn't work)
Type myType = Type.GetType("MyClass");
MemberInfo info = myType // typeof(myType);
object[] atts = info.GetCustomAttributes(true);