Mega Code Archive

 
Categories / VB.Net by API / System
 

String Format

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