Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

ProtoFlux talk:ForEachWithIndex

Discussion page of ProtoFlux:ForEachWithIndex

Decompiled:

int count = _collection.Count;
                for (int i = 0; i < count; i++)
                {
                    if (context.AbortExecution) throw new ExecutionAbortedException(...);
                    if (_reverse)
                        i = count - i - 1;
                    Index.Write(i, context);
                    WriteElement(_collection[i], context);
                    LoopIteration.Execute(context);
                }
            }int count = _collection.Count;
                for (int i = 0; i < count; i++)
                {
                    if (context.AbortExecution) throw new ExecutionAbortedException(...);
                    if (_reverse)
                        i = count - i - 1;
                    Index.Write(i, context);
                    WriteElement(_collection[i], context);
                    LoopIteration.Execute(context);
                }
            }

Electra (talk) 02:46, 15 September 2026 (UTC)Reply