makeTicks() 공개 정적인 메소드

public static makeTicks ( long ticks ) : DateTime
ticks long
리턴 DateTime
예제 #1
0
 public static DateTime toDateTime(long self, TimeZone tz)
 {
     return(DateTime.makeTicks(self, tz));
 }
예제 #2
0
파일: Date.cs 프로젝트: syatanic/fantom
 public static Date today(TimeZone tz)
 {
     return(DateTime.makeTicks(DateTime.nowTicks(), tz).date());
 }
예제 #3
0
 public static DateTime toDateTime(long self)
 {
     return(DateTime.makeTicks(self));
 }
예제 #4
0
파일: Time.cs 프로젝트: syatanic/fantom
 public static Time now(TimeZone tz)
 {
     return(DateTime.makeTicks(DateTime.nowTicks(), tz).time());
 }