當前位置: 首頁>>代碼示例>>C#>>正文


C# TimeSpan.Parse方法代碼示例

本文整理匯總了C#中System.TimeSpan.Parse方法的典型用法代碼示例。如果您正苦於以下問題:C# TimeSpan.Parse方法的具體用法?C# TimeSpan.Parse怎麽用?C# TimeSpan.Parse使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.TimeSpan的用法示例。


在下文中一共展示了TimeSpan.Parse方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Main

//引入命名空間
using System;
using System.Globalization;
using System.Threading;

public class Example
{
   public static void Main()
   {
      string[] values = { "6", "6:12", "6:12:14", "6:12:14:45", 
                          "6.12:14:45", "6:12:14:45.3448", 
                          "6:12:14:45,3448", "6:34:14:45" };
      string[] cultureNames = { "hr-HR", "en-US"};
      
      // Change the current culture.
      foreach (string cultureName in cultureNames)
      {
         Thread.CurrentThread.CurrentCulture = new CultureInfo(cultureName);
         Console.WriteLine("Current Culture: {0}", 
                           Thread.CurrentThread.CurrentCulture.Name);
         foreach (string value in values)
         {
            try {
               TimeSpan ts = TimeSpan.Parse(value);
               Console.WriteLine("{0} --> {1}", value, ts.ToString("c"));
            }
            catch (FormatException) {
               Console.WriteLine("{0}: Bad Format", value);
            }   
            catch (OverflowException) {
               Console.WriteLine("{0}: Overflow", value);
            }
         } 
         Console.WriteLine();                                
      }
   }
}
開發者ID:.NET開發者,項目名稱:System,代碼行數:37,代碼來源:TimeSpan.Parse

輸出:

Current Culture: hr-HR
6 --> 6.00:00:00
6:12 --> 06:12:00
6:12:14 --> 06:12:14
6:12:14:45 --> 6.12:14:45
6.12:14:45 --> 6.12:14:45
6:12:14:45.3448: Bad Format
6:12:14:45,3448 --> 6.12:14:45.3448000
6:34:14:45: Overflow

Current Culture: en-US
6 --> 6.00:00:00
6:12 --> 06:12:00
6:12:14 --> 06:12:14
6:12:14:45 --> 6.12:14:45
6.12:14:45 --> 6.12:14:45
6:12:14:45.3448 --> 6.12:14:45.3448000
6:12:14:45,3448: Bad Format
6:34:14:45: Overflow

示例2: foreach

string[] values = { "000000006", "12.12:12:12.12345678" };
foreach (string value in values)
{
   try {
      TimeSpan interval = TimeSpan.Parse(value);
      Console.WriteLine("{0} --> {1}", value, interval);
   }   
   catch (FormatException) {
      Console.WriteLine("{0}: Bad Format", value);
   }   
   catch (OverflowException) {
      Console.WriteLine("{0}: Overflow", value);
   }
}

// Output from .NET Framework 3.5 and earlier versions:
//       000000006 --> 6.00:00:00
//       12.12:12:12.12345678: Bad Format      
// Output from .NET Framework 4 and later versions or .NET Core:
//       000000006: Overflow
//       12.12:12:12.12345678: Overflow
開發者ID:.NET開發者,項目名稱:System,代碼行數:21,代碼來源:TimeSpan.Parse

示例3: Main

//引入命名空間
using System;
using System.Globalization;
using System.Text.RegularExpressions;

public class Example
{
   public static void Main()
   {
      string[] values = { "6", "6:12", "6:12:14", "6:12:14:45", 
                          "6.12:14:45", "6:12:14:45.3448", 
                          "6:12:14:45,3448", "6:34:14:45" };
      CultureInfo[] cultures = { new CultureInfo("en-US"), 
                                 new CultureInfo("ru-RU"),
                                 CultureInfo.InvariantCulture };
      
      string header = String.Format("{0,-17}", "String");
      foreach (CultureInfo culture in cultures)
         header += culture.Equals(CultureInfo.InvariantCulture) ? 
                      String.Format("{0,20}", "Invariant") :
                      String.Format("{0,20}", culture.Name);
      Console.WriteLine(header);
      Console.WriteLine();
      
      foreach (string value in values)
      {
         Console.Write("{0,-17}", value);
         foreach (CultureInfo culture in cultures)
         {
            try {
               TimeSpan ts = TimeSpan.Parse(value, culture);
               Console.Write("{0,20}", ts.ToString("c"));
            }
            catch (FormatException) {
               Console.Write("{0,20}", "Bad Format");
            }   
            catch (OverflowException) {
               Console.Write("{0,20}", "Overflow");
            }      
         }
         Console.WriteLine();                                
      }
   }
}
開發者ID:.NET開發者,項目名稱:System,代碼行數:44,代碼來源:TimeSpan.Parse

輸出:

String                          en-US               ru-RU           Invariant

6                          6.00:00:00          6.00:00:00          6.00:00:00
6:12                         06:12:00            06:12:00            06:12:00
6:12:14                      06:12:14            06:12:14            06:12:14
6:12:14:45                 6.12:14:45          6.12:14:45          6.12:14:45
6.12:14:45                 6.12:14:45          6.12:14:45          6.12:14:45
6:12:14:45.3448    6.12:14:45.3448000          Bad Format  6.12:14:45.3448000
6:12:14:45,3448            Bad Format  6.12:14:45.3448000          Bad Format
6:34:14:45                   Overflow            Overflow            Overflow

示例4: Main

//引入命名空間
using System;

class MainClas
{
  public static void Main()
  {
    
    TimeSpan myTimeSpan11 = TimeSpan.Parse("8:10:30");
    Console.WriteLine("TimeSpan.Parse(\"8:10:30\") = " + myTimeSpan11);
  }
}
開發者ID:C#程序員,項目名稱:System,代碼行數:12,代碼來源:TimeSpan.Parse


注:本文中的System.TimeSpan.Parse方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。