Interpreter.Parse.ListExpression.ListExpression C# (CSharp) 메소드

ListExpression() 공개 메소드

public ListExpression ( IEnumerable items ) : System.Collections.Generic
items IEnumerable
리턴 System.Collections.Generic
        public ListExpression(IEnumerable<IExpression> items)
        {
            Items = items.ToArray();
        }