早上好,
当我想要显示项目名称&我使用的版本:
System.Windows.Forms.Application.ProductName
System.Windows.Forms.Application.ProductVersion
项目的最后更改日期是否有类似的内容? 目前我有一个有效的解决方法(见下文),但我想知道是否有与上述解决方案相同的解决方案。
Dim strFile = Application.StartupPath & "\" & Application.ProductName & ".exe"
Return System.IO.File.GetLastWriteTime(strFile.ToString()).ToShortDateString()