Determine software version

E

Eric H

How do I programatically determine the version of executables on Mobile 5 and
6 devices from a seperate executable?

I'm running an app on mobile 5 and I want that app to determine the version
of other excutables that are sitting on the same PDA.

Thanks!

Eric
 
G

Guest

Pretty simple then. Load the assembly via reflection (e.g.
Assembly.LoadFrom) and then use the returned Assembly instance to get the
version information (by calling GetName().Version).


--

Chris Tacke, eMVP
Join the Embedded Developer Community
http://community.opennetcf.com
 
E

Eric H

You rock.

Thanks for the quick response.

-Eric

Pretty simple then. Load the assembly via reflection (e.g.
Assembly.LoadFrom) and then use the returned Assembly instance to get the
version information (by calling GetName().Version).


--

Chris Tacke, eMVP
Join the Embedded Developer Community
http://community.opennetcf.com
 
B

Bryan

Keep in mind that that will load the assembly into memory for the entire life
of the process. There is no way to unload it.
 
P

patash

Keep in mind that that will load the assembly into memory for the entire life
of the process. There is no way to unload it.

Hi Bryan,
Yes and that was highly expected in CF 3.5 :) also ApplicationDomain.

Ashish
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top