utcoffset() 공개 메소드

public utcoffset ( object dt ) : timedelta,
dt object
리턴 timedelta,
예제 #1
0
파일: datetime.cs 프로젝트: kashano/main
 internal static bool IsNaiveTimeZone(tzinfo tz) {
     if (tz == null) return true;
     if (tz.utcoffset(null) == null) return true;
     return false;
 }