Hey all, I have a Loaded assembly and I need to define an instance from its type, I don't mean using the following:
object t = assembly.CreateInstance(...)
I need something like this:
typeof(assembly.CreateInstance(..).getType()) newObject
but this is wrong, how can I accomplish that?any fast suggestions??