Click or drag to resize

VersionInfoFileDate Property

Gets the date and time the assembly was compiled.

Namespace: InnerDrive.Core
Assembly: InnerDrive.Core (in InnerDrive.Core.dll) Version: 5.0.8475.0
Syntax
C#
public DateTime FileDate { get; }

Return Value

DateTime
A DateTime structure containing the date and time (UTC) that the assembly was compiled.
Example
C#
var versionInfo = new VersionInfo();
var appDate = versionInfo.FileDate;

// Returns "2022-01-16 18:00"
See Also