I am trying to create an instance of a typed dataset dynamically in my code at runtime. I have the type available to me, but when I try to do this:
object obj = Activator.CreateInstance(Type.GetType("TYPED DATASET TYPE HERE"));
The problem is the type doesn't seem to be valid according to the code when I try and run it. What could I be doing wrong here?