Displaying version info onto a label

  • Thread starter Thread starter TGF
  • Start date Start date
T

TGF

Hello,

I am trying to figure out how to display the applications version
information onto a label. How would I do this?

-T
 
Hello,

I am trying to figure out how to display the applications version
information onto a label. How would I do this?

-T

Look into System.Reflection.Assembly class.
Assembly.GetStartingAssembly().GetName() returns(among other info) what you
need.
 
* "TGF said:
I am trying to figure out how to display the applications version
information onto a label. How would I do this?

'System.Reflection.Assembly.GetExecutingAssembly().GetName().Version' or
'Application.ProductVersion'.
 
Back
Top