Csharp/CSharp Tutorial/Date Time/TimeSpan Parse

Материал из .Net Framework эксперт
Версия от 12:19, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Use the Parse() method to convert strings to TimeSpan instances: 7

using System;
class MainClas
{
  public static void Main()
  {
    
    TimeSpan myTimeSpan12 = TimeSpan.Parse("1.8:10:30.1234567");
    Console.WriteLine("TimeSpan.Parse(\"1.8:10:30.1234567\") = " + myTimeSpan12);
  }
}
TimeSpan.Parse("1.8:10:30.1234567") = 1.08:10:30.1234567

==Use the Parse() method to convert strings to TimeSpan instances: /td>


using System;
class MainClas
{
  public static void Main()
  {
    
    TimeSpan myTimeSpan11 = TimeSpan.Parse("8:10:30");
    Console.WriteLine("TimeSpan.Parse(\"8:10:30\") = " + myTimeSpan11);
  }
}
TimeSpan.Parse("8:10:30") = 08:10:30