tzinfo.utcoffset C# (CSharp) Méthode

utcoffset() public méthode

public utcoffset ( object dt ) : timedelta,
dt object
Résultat timedelta,
            public virtual timedelta utcoffset(object dt) {
                throw new NotImplementedException();
            }

Usage Example

Exemple #1
0
 internal static bool IsNaiveTimeZone(tzinfo tz) {
     if (tz == null) return true;
     if (tz.utcoffset(null) == null) return true;
     return false;
 }