如何在C#中使用单引号和双引号插入字符串值

时间:2019-03-15 10:30:54

标签: c# string

我有这个字符串值:

filteredInput = "CONTAINS(Address, '"+ state +"');

filteredInput的返回值为

CONTAINS(Address, 'statehere')

我想要这样的返回值:

CONTAINS(Address, '"statehere"')

问题是'“ + state +”'是c#分配字符串值的方法的一部分。 如何使字符串为““ statehere”“?

谢谢

0 个答案:

没有答案