コード例 #1
0
		public MethodInvocationExpression (Expression target, ExpressionCollection arguments)
		{
			_target = target;
			_arguments = arguments;
		}
コード例 #2
0
		ExpressionCollection PopRange (int count)
		{
			ExpressionCollection range = new ExpressionCollection ();
			for (int i=0; i < count; ++i) {
				range.Insert (0, Pop ());
			}
			return range;
		}
コード例 #3
0
 public MethodInvocationExpression(Expression target, ExpressionCollection arguments)
 {
     _target    = target;
     _arguments = arguments;
 }