c# remove specific character from string

C#
string phrase = "this is, a string with, too many commas";
phrase = phrase.Replace(",", "");
Source

Also in C#: