Create DateTimeOffset using the specified DateTime value and offset. : DateTimeOffset « Date Time « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# Book
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Date Time » DateTimeOffsetScreenshots 
Create DateTimeOffset using the specified DateTime value and offset.
  

using System;
using System.Collections.ObjectModel;

public class TimeOffsets
{
   public static void Main()
   {
        DateTime localTime = new DateTime(20070712063200)
        DateTimeOffset dateAndOffset = new DateTimeOffset(localTime, TimeZoneInfo.Local.GetUtcOffset(localTime));
        Console.WriteLine(dateAndOffset);
   }
}

   
    
  
Related examples in the same category
1.Create DateTimeOffset using the specified DateTime value.
2.Create DateTimeOffset using the specified year, month, day, hour, minute, second, millisecond, and offset of a specified calendar.
3.Create DateTimeOffset using the specified year, month, day, hour, minute, second, millisecond, and offset.
4.Create DateTimeOffset using the specified year, month, day, hour, minute, second, and offset.
5.Create DateTimeOffset using the specified number of ticks and offset.
6.Gets hour from DateTimeOffsetGets hour from DateTimeOffset
7.Gets second from DateTimeOffsetGets second from DateTimeOffset
8.Gets second from DateTimeOffset: s (second)Gets second from DateTimeOffset: s (second)
9.Gets second from DateTimeOffset: ssGets second from DateTimeOffset: ss
10.Gets year from DateTimeOffset
11.Converts DateTimeOffset to the date and time specified by an offset value.
12.Converts DateTimeOffset to string with ToString() method
13.Converts DateTimeOffset to a DateTimeOffset value representing the Coordinated Universal Time (UTC).
14.Compare two DateTimeOffset values for equalityCompare two DateTimeOffset values for equality
15.Compare two DateTimeOffset valuesCompare two DateTimeOffset values
16.Compare one DateTimeOffset with another objectCompare one DateTimeOffset with another object
17.Compare two DateTimeOffset values for time and offsetCompare two DateTimeOffset values for time and offset
18.Show possible time zone for a DateTimeOffset
19.Create DateTimeOffset from DateTime with TimeSpan
20.Choosing Between DateTime, DateTimeOffset, and TimeZoneInfo
21.Find difference between Date.Now and Date.UtcNow
22.Find difference between Now and UtcNow using DateTimeOffset
23.Compares two DateTimeOffset objects and indicates the order.
24.Compares current DateTimeOffset to a specified DateTimeOffset object and indicates the order.
25.Gets a DateTime value from DateTimeOffsetGets a DateTime value from DateTimeOffset
26.Gets the day of the month from DateTimeOffset object.Gets the day of the month from DateTimeOffset object.
27.Gets the day of the week from DateTimeOffsetGets the day of the week from DateTimeOffset
28.Converts the file time to an equivalent local time.
29.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
30.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
31.Is valid local timeIs valid local time
32.Is it an ambiguous timeIs it an ambiguous time
33.Gets millisecond from DateTimeOffsetGets millisecond from DateTimeOffset
34.Gets minute from DateTimeOffsetGets minute from DateTimeOffset
35.Gets the month from DateTimeOffsetGets the month from DateTimeOffset
36.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).
37.Gets the time's offset from Coordinated Universal Time (UTC).Gets the time's offset from Coordinated Universal Time (UTC).
38.Assume time is local during the parseAssume time is local during the parse
39.Assume time is UTCAssume time is UTC
40.Parse and convert to UTCParse and convert to UTC
41.Gets the number of ticks from DateTimeOffsetGets the number of ticks from DateTimeOffset
42.Gets the time of day from DateTimeOffsetGets the time of day from DateTimeOffset
43.A summer UTC time vs a winter timeA summer UTC time vs a winter time
44.Get current time in UTC
java2s.com  |  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.