Mono.CSharp.Foreach.CollectionForeach.Body.Body C# (CSharp) Method

Body() public method

public Body ( System.TypeSpec type, LocalVariable variable, Mono.CSharp.Expression current, Statement statement, Mono.CSharp.Location loc ) : System
type System.TypeSpec
variable LocalVariable
current Mono.CSharp.Expression
statement Statement
loc Mono.CSharp.Location
return System
				public Body (TypeSpec type, LocalVariable variable,
								   Expression current, Statement statement,
								   Location loc)
				{
					this.type = type;
					this.variable = new LocalVariableReference (variable, loc);
					this.current = current;
					this.statement = statement;
					this.loc = loc;
				}
Foreach.CollectionForeach.Body