I want to get the build date of an .exe or .dll file.
How can I get it?
For example:
For this .exe I can access last modified date via: 
FileInfo file = new FileInfo(exefiles);
date = file.LastWriteTime;
How can I get the build or compile time?
For example I want to do it like this program:


 
    