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

StatementList() public method

public StatementList ( Statement first, Statement second ) : System
first Statement
second Statement
return System
		public StatementList (Statement first, Statement second)
		{
			statements = new List<Statement> () { first, second };
		}