We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Added by dholton dholton
Converts things such as for loops.
For example, this code:
for item as System.Int32 in myarray: System.Console.WriteLine(item)
is transformed into this:
___iterator1 = myarray.GetEnumerator() while ___iterator1.MoveNext(): item = ___iterator1.get_Current() System.Console.WriteLine(item)