How to define a ref-type variable from a assembly loaded at runtime?
- by smwikipedia
I want to define a ref type variable, like this:
SomeType v=null
and this "SomeType" is defined in another assembly which is loaded at runtime with AppDomain.CurrentDomain.Load().
I know how to create an object of "SomeType", but how to just define a ref-type variable only?
Many thanks...