Assembly

  • Thread starter Thread starter CJ Taylor
  • Start date Start date
C

CJ Taylor

How do I get the version of an assembly using System.Reflection.Assembly
class?

Thanks,
cJ
 
* "CJ Taylor said:
How do I get the version of an assembly using System.Reflection.Assembly
class?

\\\
MsgBox( _
System.Reflection.Assembly.GetExecutingAssembly(_
).GetName().Version.ToString() _
)
///

- or -

\\\
MsgBox( _
System.Windows.Forms.Application.ProductVersion.ToString() _
)
///
 

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

Similar Threads


Back
Top