using reference in runtime
C#
3
Posts
2
Posters
0
Views
1
Watching
-
vatzcar wrote:
how can i use a assembly(dll) reference in runtime?
Have a look at the Assembly class. You can load an assembly with Assembly.LoadFile() and get its types with Assembly.GetTypes(). Activator.CreateInstance() will create an object of a given type. Does that answer your question? Cheers, Vikram.
I don't know and you don't either. Militant Agnostic
-
vatzcar wrote:
how can i use a assembly(dll) reference in runtime?
Have a look at the Assembly class. You can load an assembly with Assembly.LoadFile() and get its types with Assembly.GetTypes(). Activator.CreateInstance() will create an object of a given type. Does that answer your question? Cheers, Vikram.
I don't know and you don't either. Militant Agnostic