您以前尝试过吗?
static void Main(string[] args)
{
int x = 10;
x = x++;
Console.WriteLine(x);
}
输出:10。
但对于
x++;
输出:11。
谁能解释为什么呢?
慕哥6287543
相关分类