ToDateTime() 공개 메소드

public ToDateTime ( ) : System.DateTime
리턴 System.DateTime
예제 #1
0
파일: sceRtc.cs 프로젝트: soywiz/cspspemu
 public int sceRtcGetTick(ref ScePspDateTime Date, out ulong Tick)
 {
     try
     {
         Tick = (ulong)Date.ToDateTime().GetTotalMicroseconds();
         return 0;
     }
     catch (Exception)
     {
         //Console.Error.WriteLine("sceRtcGetTick.Date: " + *Date);
         //Console.Error.WriteLine(Exception);
         throw (new SceKernelException(SceKernelErrors.ERROR_INVALID_VALUE));
     }
 }