📜  c# 运算符中的简写 - C# 代码示例

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

代码示例1
Console.WriteLine("----short hand-----");
int x = 10;
x += 10;
Console.WriteLine(x);