문제

Does anybody know in which format quartz.net stores the times in the QUARTZ_TRIGGERS table. For example I have seen 634019848980000000 in NEXT_FIRE_TIME column, but I am unable to get the exact date time.

It will be very helpful if I can get this. Thanks.

도움이 되었습니까?

해결책

634019848980000000 == 2/17/2010 6:28:18 AM
it is tickcount.

    DateTime d = new DateTime(634019848980000000);
    Console.WriteLine(d.ToString());
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top