How To Get The Dll Version ?

  • Thread starter Thread starter Tiraman
  • Start date Start date
T

Tiraman

Hi ,

i wrote a DLL and i would like to know if there is a method to get the dll
version or should i implement some thing ?

10x
 
right click on the file... go to properties.. gives file version and
assembly version.
 
* "Tiraman said:
i wrote a DLL and i would like to know if there is a method to get the dll
version or should i implement some thing ?

\\\
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

Back
Top