コード例 #1
0
ファイル: TimeZones.cs プロジェクト: kendallb/peachpie
 internal static void SetCurrentTimeZone(Context ctx, TimeZoneInfo value)
 {
     DateConfiguration.GetConfiguration(ctx).TimeZoneInfo = value;
 }
コード例 #2
0
ファイル: TimeZones.cs プロジェクト: kendallb/peachpie
 internal static TimeZoneInfo GetCurrentTimeZone(Context ctx)
 {
     return(DateConfiguration.GetConfiguration(ctx).TimeZoneInfo);
 }