Is there some clever way of getting the date and time of when the dll was built/compiled?
I’m using the assembly version numbering and reflection to retrieve and dis
You can get it by this way:
File.GetLastWriteTime(Assembly.GetExecutingAssembly().Location);
Returns DateTime object.
DateTime