VB.NETでC言語の sprintf

dim sb as new System.Text.StringBuilder()
for n as Integer = 0 to 100
  sb.append( String::Format( "No0 ={0:0000} No1={1:#,##0} No2={2:#0.00}{3}", n, n*33, n*45.125, vbCrLf ) )
next
TextBox1.Text = sb.ToString()