VersionInfoFileDate Property

Gets the date and time the assembly was compiled.

Definition

Namespace: InnerDrive.Core
Assembly: InnerDrive.Core (in InnerDrive.Core.dll) Version: 5.2.9017.0
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