I am converting VB.NET code to c# and I am stopped when I reached the following code snippet. I need someone's help to convert Chr(34). Please help me to convert it to c#.
VB.NET Code
Dim inputString As String
inputString = "Some text ..."
inputString = Replace(inputString, Chr(34), "")**
My c# conversion is
string inputString = "Some text ...";
inputString = inputString.Replace(NEED HELP HERE, "");**