Chr(34) equivalent

后端 未结 2 1021
抹茶落季
抹茶落季 2021-01-11 17:13

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 hel

2条回答
  •  时光取名叫无心
    2021-01-11 17:46

    Converted code below:

    string inputString = null;
    inputString = "Some text ...";
    inputString = Strings.Replace(inputString, Strings.Chr(34), "");
    

    I would recommend to use any converter if you are not dealing any confidential details. This will save sometime.

    In fact, I used this tool to convert your code.

提交回复
热议问题