How to get the current date and time in VB.NET

2 Answers

0 votes
Module Module1

    Sub Main()

        Dim dt As Date = Date.Now

        Console.WriteLine(dt)

    End Sub

End Module

' run:
' 
' 18/09/2018 11:24:27

 



answered Sep 18, 2018 by avibootz
0 votes
Module Module1

    Sub Main()

        Console.WriteLine(Date.Now.ToString("yyyy/MM/dd HH:mm:ss"))

    End Sub

End Module

' run:
' 
' 2018/09/18 11:27:28

 



answered Sep 18, 2018 by avibootz
...