public void SetTimeZone(TimeZoneFromTwitter timeZoneFromTwitter)
        {
            var tzinfo = timeZoneFromTwitter.GetTZinfo();

            if (tzinfo != null)
            {
                TimeZone = tzinfo;
            }
        }
Пример #2
0
 public void SetTimeZone(TimeZoneFromTwitter timeZoneFromTwitter)
 {
     var tzinfo = timeZoneFromTwitter.GetTZinfo();
     if (tzinfo != null)
     {
         TimeZone = tzinfo;
     }
 }