当前位置: 首页>>代码示例>>C#>>正文


C# DateTimeOffset.ParseExact方法代码示例

本文整理汇总了C#中System.DateTimeOffset.ParseExact方法的典型用法代码示例。如果您正苦于以下问题:C# DateTimeOffset.ParseExact方法的具体用法?C# DateTimeOffset.ParseExact怎么用?C# DateTimeOffset.ParseExact使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.DateTimeOffset的用法示例。


在下文中一共展示了DateTimeOffset.ParseExact方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: DateTimeOffset

TextReader conIn = Console.In;
 TextWriter conOut = Console.Out;
 int tries = 0;
 string input = String.Empty;
 string[] formats = new string[] {@"@M/dd/yyyy HH:m zzz", @"MM/dd/yyyy HH:m zzz", 
                                  @"M/d/yyyy HH:m zzz", @"MM/d/yyyy HH:m zzz", 
                                  @"M/dd/yy HH:m zzz", @"MM/dd/yy HH:m zzz", 
                                  @"M/d/yy HH:m zzz", @"MM/d/yy HH:m zzz",                             
                                  @"M/dd/yyyy H:m zzz", @"MM/dd/yyyy H:m zzz", 
                                  @"M/d/yyyy H:m zzz", @"MM/d/yyyy H:m zzz", 
                                  @"M/dd/yy H:m zzz", @"MM/dd/yy H:m zzz", 
                                  @"M/d/yy H:m zzz", @"MM/d/yy H:m zzz",                               
                                  @"M/dd/yyyy HH:mm zzz", @"MM/dd/yyyy HH:mm zzz", 
                                  @"M/d/yyyy HH:mm zzz", @"MM/d/yyyy HH:mm zzz", 
                                  @"M/dd/yy HH:mm zzz", @"MM/dd/yy HH:mm zzz", 
                                  @"M/d/yy HH:mm zzz", @"MM/d/yy HH:mm zzz",                                 
                                  @"M/dd/yyyy H:mm zzz", @"MM/dd/yyyy H:mm zzz", 
                                  @"M/d/yyyy H:mm zzz", @"MM/d/yyyy H:mm zzz", 
                                  @"M/dd/yy H:mm zzz", @"MM/dd/yy H:mm zzz", 
                                  @"M/d/yy H:mm zzz", @"MM/d/yy H:mm zzz"};
 IFormatProvider provider = CultureInfo.InvariantCulture.DateTimeFormat;
 DateTimeOffset result = new DateTimeOffset();

 do { 
    conOut.WriteLine("Enter a date, time, and offset (MM/DD/YYYY HH:MM +/-HH:MM),");
    conOut.Write("Then press Enter: ");
    input = conIn.ReadLine();
    conOut.WriteLine();
    try
    {
       result = DateTimeOffset.ParseExact(input, formats, provider, 
                                          DateTimeStyles.AllowWhiteSpaces);
       break;
    }
    catch (FormatException)
    {
       Console.WriteLine("Unable to parse {0}.", input);      
       tries++;
    }
 } while (tries < 3);
 if (tries >= 3)
    Console.WriteLine("Exiting application without parsing {0}", input);
 else
    Console.WriteLine("{0} was converted to {1}", input, result.ToString());                                                     
 // Some successful sample interactions with the user might appear as follows:
 //    Enter a date, time, and offset (MM/DD/YYYY HH:MM +/-HH:MM),
 //    Then press Enter: 12/08/2007 6:54 -6:00
 //    
 //    12/08/2007 6:54 -6:00 was converted to 12/8/2007 6:54:00 AM -06:00         
 //    
 //    Enter a date, time, and offset (MM/DD/YYYY HH:MM +/-HH:MM),
 //    Then press Enter: 12/8/2007 06:54 -06:00
 //    
 //    12/8/2007 06:54 -06:00 was converted to 12/8/2007 6:54:00 AM -06:00
 //    
 //    Enter a date, time, and offset (MM/DD/YYYY HH:MM +/-HH:MM),
 //    Then press Enter: 12/5/07 6:54 -6:00
 //    
 //    12/5/07 6:54 -6:00 was converted to 12/5/2007 6:54:00 AM -06:00
开发者ID:.NET开发者,项目名称:System,代码行数:59,代码来源:DateTimeOffset.ParseExact

示例2: catch

string dateString, format;  
DateTimeOffset result;
CultureInfo provider = CultureInfo.InvariantCulture;

// Parse date-only value with invariant culture and assume time is UTC.
dateString = "06/15/2008";
format = "d";
try
{
   result = DateTimeOffset.ParseExact(dateString, format, provider, 
                                      DateTimeStyles.AssumeUniversal);
   Console.WriteLine("'{0}' converts to {1}.", dateString, result.ToString());
}
catch (FormatException)
{
   Console.WriteLine("'{0}' is not in the correct format.", dateString);
} 

// Parse date-only value with leading white space.
// Should throw a FormatException because only trailing white space is  
// specified in method call.
dateString = " 06/15/2008";
try
{
   result = DateTimeOffset.ParseExact(dateString, format, provider, 
                                      DateTimeStyles.AllowTrailingWhite);
   Console.WriteLine("'{0}' converts to {1}.", dateString, result.ToString());
}   
catch (FormatException)
{
   Console.WriteLine("'{0}' is not in the correct format.", dateString);
} 

// Parse date and time value, and allow all white space.
dateString = " 06/15/   2008  15:15    -05:00";
format = "MM/dd/yyyy H:mm zzz";
try
{
   result = DateTimeOffset.ParseExact(dateString, format, provider, 
                                      DateTimeStyles.AllowWhiteSpaces);
   Console.WriteLine("'{0}' converts to {1}.", dateString, result.ToString());
}   
catch (FormatException)
{
   Console.WriteLine("'{0}' is not in the correct format.", dateString);
} 

// Parse date and time and convert to UTC.
dateString = "  06/15/2008 15:15:30 -05:00";
format = "MM/dd/yyyy H:mm:ss zzz"; 
try
{
   result = DateTimeOffset.ParseExact(dateString, format, provider, 
                                      DateTimeStyles.AllowWhiteSpaces |
                                      DateTimeStyles.AdjustToUniversal);
   Console.WriteLine("'{0}' converts to {1}.", dateString, result.ToString());
}
catch (FormatException)
{
   Console.WriteLine("'{0}' is not in the correct format.", dateString);
}
开发者ID:.NET开发者,项目名称:System,代码行数:61,代码来源:DateTimeOffset.ParseExact

输出:

'06/15/2008' converts to 6/15/2008 12:00:00 AM +00:00.
' 06/15/2008' is not in the correct format.
' 06/15/   2008  15:15    -05:00' converts to 6/15/2008 3:15:00 PM -05:00.
'  06/15/2008 15:15:30 -05:00' converts to 6/15/2008 8:15:30 PM +00:00.

示例3: Main

//引入命名空间
using System;
using System.Globalization;

public class Example
{
   public static void Main()
   {
      string[] dateStrings = { "2018-08-18T12:45:16.0000000Z",
                               "2018/08/18T12:45:16.0000000Z",
                               "2018-18-08T12:45:16.0000000Z",
                               "2018-08-18T12:45:16.0000000",                               
                               " 2018-08-18T12:45:16.0000000Z ",
                               "2018-08-18T12:45:16.0000000+02:00",
                               "2018-08-18T12:45:16.0000000-07:00" }; 
      
      ParseWithISO8601(dateStrings, DateTimeStyles.None);
      Console.WriteLine("\n-----\n");
      ParseWithISO8601(dateStrings, DateTimeStyles.AllowWhiteSpaces);
      Console.WriteLine("\n-----\n");
      ParseWithISO8601(dateStrings, DateTimeStyles.AdjustToUniversal);
      Console.WriteLine("\n-----\n");
      ParseWithISO8601(dateStrings, DateTimeStyles.AssumeLocal);
      Console.WriteLine("\n-----\n");
      ParseWithISO8601(dateStrings, DateTimeStyles.AssumeUniversal);   }

   private static void ParseWithISO8601(string[] dateStrings, DateTimeStyles styles)
   {   
      Console.WriteLine($"Parsing with {styles}:");
      foreach (var dateString in dateStrings)
      {
         try {
            var date = DateTimeOffset.ParseExact(dateString, "O", null, styles);
            Console.WriteLine($"   {dateString,-35} --> {date:yyyy-MM-dd HH:mm:ss.FF zzz}");
         }
         catch (FormatException)
         {
            Console.WriteLine($"   FormatException: Unable to convert '{dateString}'");
         }   
      } 
   }
}
开发者ID:.NET开发者,项目名称:System,代码行数:42,代码来源:DateTimeOffset.ParseExact

输出:

Parsing with None:
2018-08-18T12:45:16.0000000Z        --> 2018-08-18 12:45:16 +00:00
FormatException: Unable to convert '2018/08/18T12:45:16.0000000Z'
FormatException: Unable to convert '2018-18-08T12:45:16.0000000Z'
2018-08-18T12:45:16.0000000         --> 2018-08-18 12:45:16 -07:00
FormatException: Unable to convert ' 2018-08-18T12:45:16.0000000Z '
2018-08-18T12:45:16.0000000+02:00   --> 2018-08-18 12:45:16 +02:00
2018-08-18T12:45:16.0000000-07:00   --> 2018-08-18 12:45:16 -07:00

-----

Parsing with AllowWhiteSpaces:
2018-08-18T12:45:16.0000000Z        --> 2018-08-18 12:45:16 +00:00
FormatException: Unable to convert '2018/08/18T12:45:16.0000000Z'
FormatException: Unable to convert '2018-18-08T12:45:16.0000000Z'
2018-08-18T12:45:16.0000000         --> 2018-08-18 12:45:16 -07:00
2018-08-18T12:45:16.0000000Z       --> 2018-08-18 12:45:16 +00:00
2018-08-18T12:45:16.0000000+02:00   --> 2018-08-18 12:45:16 +02:00
2018-08-18T12:45:16.0000000-07:00   --> 2018-08-18 12:45:16 -07:00

-----

Parsing with AdjustToUniversal:
2018-08-18T12:45:16.0000000Z        --> 2018-08-18 12:45:16 +00:00
FormatException: Unable to convert '2018/08/18T12:45:16.0000000Z'
FormatException: Unable to convert '2018-18-08T12:45:16.0000000Z'
2018-08-18T12:45:16.0000000         --> 2018-08-18 19:45:16 +00:00
FormatException: Unable to convert ' 2018-08-18T12:45:16.0000000Z '
2018-08-18T12:45:16.0000000+02:00   --> 2018-08-18 10:45:16 +00:00
2018-08-18T12:45:16.0000000-07:00   --> 2018-08-18 19:45:16 +00:00

-----

Parsing with AssumeLocal:
2018-08-18T12:45:16.0000000Z        --> 2018-08-18 12:45:16 +00:00
FormatException: Unable to convert '2018/08/18T12:45:16.0000000Z'
FormatException: Unable to convert '2018-18-08T12:45:16.0000000Z'
2018-08-18T12:45:16.0000000         --> 2018-08-18 12:45:16 -07:00
FormatException: Unable to convert ' 2018-08-18T12:45:16.0000000Z '
2018-08-18T12:45:16.0000000+02:00   --> 2018-08-18 12:45:16 +02:00
2018-08-18T12:45:16.0000000-07:00   --> 2018-08-18 12:45:16 -07:00

-----

Parsing with AssumeUniversal:
2018-08-18T12:45:16.0000000Z        --> 2018-08-18 12:45:16 +00:00
FormatException: Unable to convert '2018/08/18T12:45:16.0000000Z'
FormatException: Unable to convert '2018-18-08T12:45:16.0000000Z'
2018-08-18T12:45:16.0000000         --> 2018-08-18 12:45:16 +00:00
FormatException: Unable to convert ' 2018-08-18T12:45:16.0000000Z '
2018-08-18T12:45:16.0000000+02:00   --> 2018-08-18 12:45:16 +02:00
2018-08-18T12:45:16.0000000-07:00   --> 2018-08-18 12:45:16 -07:00

示例4: catch

string dateString, format;  
DateTimeOffset result;
CultureInfo provider = CultureInfo.InvariantCulture;

// Parse date-only value with invariant culture.
dateString = "06/15/2008";
format = "d";
try
{
   result = DateTimeOffset.ParseExact(dateString, format, provider);
   Console.WriteLine("{0} converts to {1}.", dateString, result.ToString());
}   
catch (FormatException)
{
   Console.WriteLine("{0} is not in the correct format.", dateString);
} 

// Parse date-only value without leading zero in month using "d" format.
// Should throw a FormatException because standard short date pattern of 
// invariant culture requires two-digit month.
dateString = "6/15/2008";
try
{
   result = DateTimeOffset.ParseExact(dateString, format, provider);
   Console.WriteLine("{0} converts to {1}.", dateString, result.ToString());
}
catch (FormatException)
{
   Console.WriteLine("{0} is not in the correct format.", dateString);
} 

// Parse date and time with custom specifier.
dateString = "Sun 15 Jun 2008 8:30 AM -06:00";
format = "ddd dd MMM yyyy h:mm tt zzz";
try
{
   result = DateTimeOffset.ParseExact(dateString, format, provider);
   Console.WriteLine("{0} converts to {1}.", dateString, result.ToString());
}
catch (FormatException)
{
   Console.WriteLine("{0} is not in the correct format.", dateString);
} 

// Parse date and time with offset without offset//s minutes.
// Should throw a FormatException because "zzz" specifier requires leading  
// zero in hours.
dateString = "Sun 15 Jun 2008 8:30 AM -06";
try
{
   result = DateTimeOffset.ParseExact(dateString, format, provider);
   Console.WriteLine("{0} converts to {1}.", dateString, result.ToString());
}
catch (FormatException)
{
   Console.WriteLine("{0} is not in the correct format.", dateString);
}
开发者ID:.NET开发者,项目名称:System,代码行数:57,代码来源:DateTimeOffset.ParseExact

输出:

06/15/2008 converts to 6/15/2008 12:00:00 AM -07:00.
6/15/2008 is not in the correct format.
Sun 15 Jun 2008 8:30 AM -06:00 converts to 6/15/2008 8:30:00 AM -06:00.
Sun 15 Jun 2008 8:30 AM -06 is not in the correct format.

示例5: Main

//引入命名空间
using System;

public class Example
{
   public static void Main()
   {
      string[] dateStrings = { "2018-08-18T12:45:16.0000000Z",
                               "2018/08/18T12:45:16.0000000Z",
                               "2018-18-08T12:45:16.0000000Z",
                               " 2018-08-18T12:45:16.0000000Z ",
                               "2018-08-18T12:45:16.0000000+02:00",
                               "2018-08-18T12:45:16.0000000-07:00" }; 
      
      foreach (var dateString in dateStrings)
      {
         try {
            var date = DateTimeOffset.ParseExact(dateString, "O", null);
            Console.WriteLine($"{dateString,-35} --> {date:yyyy-MM-dd HH:mm:ss.FF zzz}");
         }
         catch (FormatException)
         {
            Console.WriteLine($"FormatException: Unable to convert '{dateString}'");
         }   
      } 
   }
}
开发者ID:.NET开发者,项目名称:System,代码行数:27,代码来源:DateTimeOffset.ParseExact

输出:

2018-08-18T12:45:16.0000000Z        --> 2018-08-18 12:45:16 +00:00
FormatException: Unable to convert '2018/08/18T12:45:16.0000000Z'
FormatException: Unable to convert '2018-18-08T12:45:16.0000000Z'
FormatException: Unable to convert ' 2018-08-18T12:45:16.0000000Z '
2018-08-18T12:45:16.0000000+02:00   --> 2018-08-18 12:45:16 +02:00
2018-08-18T12:45:16.0000000-07:00   --> 2018-08-18 12:45:16 -07:00


注:本文中的System.DateTimeOffset.ParseExact方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。