Hey Guys,

I have a serialized object stored in my DB, and it can be one of 3 classes (all of which implement the same interface). When I get the XML back from the DB, I also get a string containing the name of the class.

I need to get the class from that string, such that I can use:

new XmlSerializer(typeof(CLASS_NAME_HERE));

I know in Java (my main language) I can ask the class loader for a class for a given string.

Thoughts?