StyleCop.CSharp by StyleCop contributors, Andy Reeves, Chris Dahlberg

<PackageReference Include="StyleCop.CSharp" Version="6.2.0" />

.NET API 245,760 bytes

 ForStatement

public sealed class ForStatement : Statement
A for-statement.
public Expression Condition { get; }

Gets the condition checked before each loop through the for-statement.

public Statement EmbeddedStatement { get; }

Gets the statement that is embedded within this for-statement.

Gets the variables declared in the for-statement declaration.

public ICollection<Expression> Iterators { get; }

Gets the expressions called at the end of each loop through the for-statement, used to advance the enumerator.