A summer UTC time vs a winter time : DateTimeOffset « Date Time « C# / C Sharp






A summer UTC time vs a winter time

A summer UTC time vs a winter time
  

using System;
using System.Globalization;
public class Test
{
   public static void Main()
   { 
        DateTimeOffset originalTime, localTime;
        
        // Define a summer UTC time
        originalTime = new DateTimeOffset(2007, 6, 15, 8, 0, 0, TimeSpan.Zero);
        localTime = originalTime.ToLocalTime();
        Console.WriteLine("Converted {0} to {1}.", originalTime.ToString(),localTime.ToString());    
        
        // Define a winter time
        originalTime = new DateTimeOffset(2007, 11, 30, 14, 0, 0, new TimeSpan(3, 0, 0));
        localTime = originalTime.ToLocalTime();
        Console.WriteLine("Converted {0} to {1}.", originalTime.ToString(), localTime.ToString());
   }
}

   
    
  








Related examples in the same category

1.Create DateTimeOffset using the specified DateTime value.
2.Create DateTimeOffset using the specified DateTime value and offset.
3.Create DateTimeOffset using the specified year, month, day, hour, minute, second, millisecond, and offset of a specified calendar.
4.Create DateTimeOffset using the specified year, month, day, hour, minute, second, millisecond, and offset.
5.Create DateTimeOffset using the specified year, month, day, hour, minute, second, and offset.
6.Create DateTimeOffset using the specified number of ticks and offset.
7.Gets hour from DateTimeOffsetGets hour from DateTimeOffset
8.Gets second from DateTimeOffsetGets second from DateTimeOffset
9.Gets second from DateTimeOffset: s (second)Gets second from DateTimeOffset: s (second)
10.Gets second from DateTimeOffset: ssGets second from DateTimeOffset: ss
11.Gets year from DateTimeOffset
12.Converts DateTimeOffset to the date and time specified by an offset value.
13.Converts DateTimeOffset to string with ToString() method
14.Converts DateTimeOffset to a DateTimeOffset value representing the Coordinated Universal Time (UTC).
15.Compare two DateTimeOffset values for equalityCompare two DateTimeOffset values for equality
16.Compare two DateTimeOffset valuesCompare two DateTimeOffset values
17.Compare one DateTimeOffset with another objectCompare one DateTimeOffset with another object
18.Compare two DateTimeOffset values for time and offsetCompare two DateTimeOffset values for time and offset
19.Show possible time zone for a DateTimeOffset
20.Create DateTimeOffset from DateTime with TimeSpan
21.Choosing Between DateTime, DateTimeOffset, and TimeZoneInfo
22.Find difference between Date.Now and Date.UtcNow
23.Find difference between Now and UtcNow using DateTimeOffset
24.Compares two DateTimeOffset objects and indicates the order.
25.Compares current DateTimeOffset to a specified DateTimeOffset object and indicates the order.
26.Gets a DateTime value from DateTimeOffsetGets a DateTime value from DateTimeOffset
27.Gets the day of the month from DateTimeOffset object.Gets the day of the month from DateTimeOffset object.
28.Gets the day of the week from DateTimeOffsetGets the day of the week from DateTimeOffset
29.Converts the file time to an equivalent local time.
30.Gets a DateTime value that represents the local date and time from DateTimeOffsetGets a DateTime value that represents the local date and time from DateTimeOffset
31.Transition to DST in local time zone occurs on 3/11/2007 at 2:00 AMTransition to DST in local time zone occurs on 3/11/2007 at 2:00 AM
32.Is valid local timeIs valid local time
33.Is it an ambiguous timeIs it an ambiguous time
34.Gets millisecond from DateTimeOffsetGets millisecond from DateTimeOffset
35.Gets minute from DateTimeOffsetGets minute from DateTimeOffset
36.Gets the month from DateTimeOffsetGets the month from DateTimeOffset
37.Gets current date and time with the local time's offset from Coordinated Universal Time (UTC).Gets current date and time with the local time's offset from Coordinated Universal Time (UTC).
38.Gets the time's offset from Coordinated Universal Time (UTC).Gets the time's offset from Coordinated Universal Time (UTC).
39.Assume time is local during the parseAssume time is local during the parse
40.Assume time is UTCAssume time is UTC
41.Parse and convert to UTCParse and convert to UTC
42.Gets the number of ticks from DateTimeOffsetGets the number of ticks from DateTimeOffset
43.Gets the time of day from DateTimeOffsetGets the time of day from DateTimeOffset
44.Get current time in UTC