utcoffset() public method

public utcoffset ( object dt ) : timedelta,
dt object
return 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;
 }