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'.
 

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