remove char c# code example
Example: c# remove specific character from string
string phrase = "this is, a string with, too many commas";
phrase = phrase.Replace(",", "");
string phrase = "this is, a string with, too many commas";
phrase = phrase.Replace(",", "");