Replace double quotes to single quotes in csharp

Satyapriyanayak
Posted by Satyapriyanayak under C# category on | Points: 40 | Views : 1161
private void button1_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text.Replace("\"","'");
}

Comments or Responses

Login to post response