But how do I retrieve the actual variable from an assembly? I'm doing something pretty wrong here.
The version number returned ought to be 0.0.8888 or something to that effect. Also how do I extract the information from *other* assemblies?
Given a System.Reflection.Assembly reference asm, look at asm.GetName().Version.
You can get the Assembly reference for your own assembly using System.Reflection.Assembly.GetExecutingAssembly(), or typeof(OneOfYourClasses).Assembly. For other assemblies that you have referenced, you can get it from typeof(AClassInThatAssembly).Assembly or in a number of other ways.
Mattias
=== Mattias Sj�gren [EMAIL PROTECTED]
