Mono.CSharp.For.For C# (CSharp) Method

For() public method

public For ( Statement init_statement, BooleanExpression test, Statement increment, Statement statement, Mono.CSharp.Location l ) : System
init_statement Statement
test BooleanExpression
increment Statement
statement Statement
l Mono.CSharp.Location
return System
		public For (Statement init_statement,
			    BooleanExpression test,
			    Statement increment,
			    Statement statement,
			    Location l)
		{
			InitStatement = init_statement;
			Test = test;
			Increment = increment;
			Statement = statement;
			loc = l;
		}