Language Basics VB.Net Tutorial

Public Class Tester
    Public Shared Sub Main
        Console.WriteLine(String.Format( _
            "There are about {0} days in {1} years.", _
            365.25 * 3, 3, 17))
 
    End Sub
End Class
There are about 1095.75 days in 3 years.