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).

Signature
Chris Tacke, eMVP
Join the Embedded Developer Community
http://community.opennetcf.com
> Managed
>
[quoted text clipped - 12 lines]
>> >
>> > Eric
Eric H - 03 Mar 2008 18:48 GMT
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
[quoted text clipped - 16 lines]
> >> >
> >> > Eric
Bryan - 06 Mar 2008 21:18 GMT
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.
> You rock.
>
[quoted text clipped - 22 lines]
> > >> >
> > >> > Eric
patash@gmail.com - 08 Mar 2008 08:14 GMT
> 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.
[quoted text clipped - 37 lines]
>
> > > >> > Eric
Hi Bryan,
Yes and that was highly expected in CF 3.5 :-) also ApplicationDomain.
Ashish