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() _
)
///
 
Back
Top