DateTime.IsInPreviousNSeconds
DateTime.IsInPreviousNSeconds(dateTime as any) as nullable logical
指示给定的日期时间值 dateTime
是否按系统当前日期和时间所确定的那样处于之前的几秒内。
dateTime
: 要计算的datetime
或datetimezone
值。seconds
: 秒数。
示例:
确定当前系统时间前的秒是否处于前两秒内。
使用情况:
DateTime.IsInPreviousNSeconds(DateTime.FixedLocalNow() - #duration(0,0,0,2), 2)
输出:
true