Format TimeSpan : TimeSpan « Date Time « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net » Date Time » TimeSpan 




Format TimeSpan
  

Module ToString
   Public Sub Main()
      Dim span As TimeSpan
      ' Initialize a time span to zero.
      span = TimeSpan.Zero
      Console.WriteLine(FormatTimeSpan(span))

   End Sub

   Private Function FormatTimeSpan(span As TimeSpanAs String
      Dim sign As String = String.Empty
      Return sign & span.Days.ToString("00""." & _
             span.Hours.ToString("00"":" & _
             span.Minutes.ToString("00"":" & _
             span.Seconds.ToString("00""." & _
             span.Milliseconds.ToString("000")
   End Function
End Module

   
    
  














Related examples in the same category
1.Generic and nongeneric versions of the CompareTo method for TimeSpan value
2.Use a TimeSpan value with the Join method.
3.Initialize a time span to zero
4.Initialize a time span to 14 days
5.Initialize a time span to 1:02:03
6.Initialize a time span to 250 milliseconds
7.Initalize a time span to 99 days, 23 hours, 59 minutes, and 59.9999999 seconds
8.Initalize a timespan to 25 milliseconds
9.Displays the strings returned by calling the ToString method with a number of TimeSpan values.
10.Use the TryParse method to create TimeSpan objects from TimeSpan strings
11.Thread.Sleep(TimeSpan) method
12.Standard TimeSpan Format Strings
13.TimeSpan Structure Represents a time interval.
14.Create TimeSpan with hour, minute and second
15.Display individual properties of the resulting TimeSpan object
16.TimeSpan.TicksPerDay Field represents the number of ticks in 1 day. This field is constant.
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.