C#中如何输出带双引号的字符串,如 "test"

2025-01-06 19:58:21
推荐回答(2个)
回答1:

在双引号前加个\,例如:string s = "\"test\"";

回答2:

string test = @"test";