You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RobertTheGrey edited this page Jan 12, 2013
·
1 revision
<for>
Iterates over a collection
<foreach="var x in y">anyXml</for>
Results in C#:
foreach(varxiny){//anyXml-generated-code}
If the generated code appears to reference symbols named xIndex, xCount, xIsFirst, or xIsLast the minimum number of local variables needed will also be generated using a pattern similar to the following.