Question : C# Replace Statement

In the code below, how would I replace all double quote marks in the field with nothing?
basically removing ANY " in the string?

string strDescription = "";
strDescription = row["CompleteDescription"].ToString();

Answer : C# Replace Statement

1:
strDescription = row["CompleteDescription"].ToString().Replace("\"", string.Empty);
Random Solutions  
 
programming4us programming4us