How to expose information about a running .NET exe?

Posted by Doug on Stack Overflow See other posts from Stack Overflow or by Doug
Published on 2010-06-06T22:09:45Z Indexed on 2010/06/06 22:12 UTC
Read the original article Hit count: 144

Filed under:

I have a .NET exe that I wrote and it has a couple properties that I made public and want to expose.

I want to shell this exe (Process.Start()) and then somehow reference this exe and get access to these public properties. These properties expose information about the running exe.

I know how to shell to the exe. And I know how to add a reference to the exe from my project that I want to use this object. But how do I get access to the properties of this running exe?

I hope I am explaining myself well.

If you do know the answer maybe you could just tell me what the standard method is to expose properties of a running exe to another application at run-time.

Thanks for any help!

© Stack Overflow or respective owner

Related posts about vb.net