Date comparison - How to check if 20 minutes have passed?

后端 未结 6 1773
遇见更好的自我
遇见更好的自我 2021-02-05 00:44

How to check if 20 minutes have passed from current date?

For example:

var start = DateTime.Now;
var oldDate = \"08/10/2011 23:50:31\"; 

    if(start ?         


        
6条回答
  •  孤独总比滥情好
    2021-02-05 01:35

    Parse oldDate into a DateTime object (DateTime.Parse).

    Subtract the parsed date from start. This will return a TimeSpan.

    Inspect TotalMinutes.

提交回复
热议问题