我有一个变量:string currentTime in the constructor:
currentTime = DateTime.Now.ToString("HH:mm:ss tt");
如果是 Form1_FormClosing 我有:
currentTimeClosed = DateTime.Now.ToString("HH:mm:ss tt");
现在我想计算两个字符串时间之间的差异并获得用户使用类似的时间currenttimeClosed - currentTime = 10 minutes and 10 seconds
所以我知道用户使用程序 10 分钟和 10 秒。
我该怎么做 ?