The C# compiler will transform both for(;;) { // ... } and while (true) { // ... } into { :label // ... goto label; }. The CIL for both is ...
確定! 回上一頁