[Solved] string.replace( char, char) [closed]


I tested it in VS and this works for me:

textBox1.Text = textBox1.Text.Replace("\"", "\"\"");

It replaces all ” with “” in my textbox.

2

solved string.replace( char, char) [closed]