Parse() публичный Метод

Parses the specified text and returns an object that can be used for evaluation.
public Parse ( string text ) : ParsedScript
text string The text to parse.
Результат ParsedScript
Пример #1
0
        public Compiler()
        {
            _engine = new ScriptEngine("jscript");

            Debug.Assert(!string.IsNullOrWhiteSpace(LoadResource("compiler.js")));

            _vm = _engine.Parse(LoadResource("compiler.js"));
        }