📜  如何更改字符串变量的值 c# 代码示例

📅  最后修改于: 2022-03-11 14:48:44.637000             🧑  作者: Mango

代码示例1
/* just do the variable without the string part */
string variable = "unchanged";
variable = "changed";
// ez as that now we changed the value from unchanged to changed hope this helpped