Hello again,
i have this code
string descf = //insert string
char[] create20spaces = { ' ', ' ', ' ',' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
' ', ' ', ' ', ' ', '.' };
descf.CopyTo(0, create20spaces, 0, descf.Length);
richTextBox1.SelectedText += " "+quanf + " "+create20spaces+"\r\n";
and what happen is instead of getting my string , System.char [] is showing. how can i make my string display instead of system.char[]
thanks