Ejemplo n.º 1
0
        public static ExpressionList Parse(string path)
        {
            if (string.IsNullOrWhiteSpace(path))
            {
                throw new ArgumentException("Value not set", nameof(path));
            }

            return(ExpressionList.TokenizeAndParse(path));
        }