Closed. This question is not reproducible or was caused by typos。它当前不接受答案。












想改善这个问题吗?更新问题,以便将其作为on-topic用于堆栈溢出。

上个月关闭。



Improve this question




我在初学者编程类(class)中,必须调试一些代码。
我不确定为什么这里有“+ intCounter”,或者至少为什么IDE显示错误。
for (int intCounter = 1; intCounter <= 100000; +intCounter)

最佳答案

我猜您正在尝试在循环中增加intCounter。增量运算符是++,而不是+,它是一元加号运算符。即:

for (int intCounter = 1; intCounter <= 100000; ++intCounter)
// Here ----------------------------------------^

关于c# - + intCounter在Visual Studio中生成错误CS0201 ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/65053592/

10-13 00:19