How do I append white space to a string builder? I need to insert 90 blank spaces, in VB
i had this code but i was confused how to write in c#
can any one help me
Dim S As New StringBuilder("HELLO")
S.Append(" "c, 90)
S.Append("WORLD")
MessageBox.Show(S.ToString)
Thanks.