What is the string format options for second in DateTime with VB.NET

1 Answer

0 votes
Imports System

Public Class Program
    Public Shared Sub Main()
        Dim dt As DateTime = New DateTime(2005, 03, 06, 15, 08, 09)
		
        Dim s As String = String.Format("{0:s ss}", dt)
		
        Console.WriteLine(s)
    End Sub
End Class




' run:
'
' 9 09
'

 



answered Mar 27, 2022 by avibootz

Related questions

...