用vs进行c#编译时出现以外的字符$,为什么

2024-12-03 05:15:34
推荐回答(2个)
回答1:

$不可用,请选择正确的输出格式

例如:
int i=1;
string str="age=";
console.writeline(str+i);

回答2: