How to find out the Build date & time at runtime?

  • Thread starter Thread starter Alice
  • Start date Start date
A

Alice

Hi,

Does anyone know how to find out the build date & time at
runtime?

Greatly appreciated.

Alice
 
Does anyone know how to find out the build date & time at

Assembly.GetExecutingAssembly().GetName().Version
Gets you the version. date&time are imho not included but you could also get
the file modification date of the executable using FileAttributes.
 
Alice,

Please refer to the post "Build number" submitted by "Aaron" in this
newsgroup news://[email protected]
for help on how to calculate these. Use the code provided my codymanix
to get the information you need to process.

HTH,

//Andreas
 
Thanks all very much

Alice
-----Original Message-----
Alice,

Please refer to the post "Build number" submitted by "Aaron" in this
newsgroup news://[email protected]
for help on how to calculate these. Use the code provided my codymanix
to get the information you need to process.

HTH,

//Andreas

"codymanix" <[email protected]> skrev i meddelandet but you could also
get


.
 
Back
Top