Home
C# / C Sharp
2D Graphics
Class Interface
Collections Data Structure
Components
Data Types
Database ADO.net
Date Time
Design Patterns
Development Class
Event
File Stream
Generics
GUI Windows Form
Internationalization I18N
Language Basics
LINQ
Network
Office
Reflection
Regular Expressions
Security
Services Event
Thread
Web Services
Windows
Windows Presentation Foundation
XML
XML LINQ
DateTimeOffset Parse « Date Time « C# / C Sharp
C# / C Sharp
Date Time
DateTimeOffset Parse
1.
Converts string to DateTimeOffset: String with date only(05/01/2008)
2.
Converts string to DateTimeOffset: String with time only(11:36 PM)
3.
Converts string to DateTimeOffset: String with date and offset (05/01/2008 +1:00)
4.
Converts string to DateTimeOffset: String with day abbreviation(Thu May 01, 2008)
5.
Converts string to DateTimeOffset using the specified culture-specific format information.
6.
Converts string to DateTimeOffset:"15/09/07 08:45:00 +1:00"
7.
Converts string to DateTimeOffset:"mar. 1 janvier 2008 1:00:00 +1:00"
8.
Converts string to DateTimeOffset using the specified culture-specific format information and formatting style.
9.
Parse date-only value with invariant culture.
10.
Parse date-only value without leading zero in month using "d" format.
11.
Parse date and time with custom specifier.
12.
Parse date and time with offset without offset//s minutes.
13.
Parse date-only value with invariant culture and assume time is UTC.
14.
Parse date-only value with leading white space.
15.
Parse date and time value, and allow all white space.
16.
Parse date and time and convert to UTC.
17.
Tries to converts a string to DateTimeOffset(String with date only)
18.
Tries to converts a string to DateTimeOffset(String with time only)
19.
Tries to converts a string to DateTimeOffset(String with date and offset )
20.
Tries to converts a string to DateTimeOffset(String with day abbreviation)
21.
Tries to converts a string to DateTimeOffset(String with date, time with AM/PM designator, and offset)