简体   繁体   中英

How to get assembly reference of started process?

I have started a process with help of below code.

Process p = Process.Start(@"H:\MyProjects\LyncExtension\Sample\bin\Debug\Sample.exe");

My question is: how to get assembly reference from above statement.

Pls help me

Short answer is you can't. Start runs more than .NET applications. You could use Assembly.Load independently to try to load the binary...

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM