Running program with .dll extension!
Hi all,
From this site : http://dotnetperls.com/process-start-net
"Use the Process.Start method to start external EXEs.
This method is in the System.Diagnostics namespace.
It will show a console window. "
How about if the program running using .dll extension? how to code this? What methods should use?
Thanks in advance.
naura paxPosted Oct 3, 2009, 3:17 AM
I am sorry about my earlier post.
Kirtan PatelPosted Oct 2, 2009, 12:44 PM
you can do it with
rundll32.exe of the windows
naura paxPosted Oct 2, 2009, 3:19 AM
please mark as answerd if helpful.
azie ishakPosted Oct 2, 2009, 2:37 AM
naura paxPosted Oct 2, 2009, 12:49 AM
a file with .dll extension is also an assembly (unit of deployment), but you can't run it directly by using any command. It is basically a library which can be referenced in another assembly (.exe).
In short you can reference a dll in your project and use its types and methods in your source code.