String.Format : String « System « VB.Net by API






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

   
    
  








Related examples in the same category

1.String.Compare
2.String.Concat
3.String.Copy
4.String.Empty
5.String.Equals
6.String.GetEnumerator
7.String.GetHashCode()
8.String.IndexOf(String substring)
9.String.IndexOfAny(String sub)
10.String.IndexOfAny(String sub, Int count)
11.String.Insert
12.String.IsNullOrEmpty
13.String.LastIndexOf
14.String.PadLeft(Int length)
15.String.PadLeft(Int length, String char)
16.String.Replace
17.String.Split
18.String.StartsWith
19.String.Substring(Int begin)
20.String.Substring(Int begin, Int end)
21.String.ToCharArray()
22.String.ToLower()
23.String.ToUpper()