Core.DlrEngine.CreateScriptSourceFromString C# (CSharp) Method

CreateScriptSourceFromString() protected method

protected CreateScriptSourceFromString ( string code ) : Microsoft.Scripting.ScriptSource
code string
return Microsoft.Scripting.ScriptSource
        protected ScriptSource CreateScriptSourceFromString(string code)
        {
            return _engine.CreateScriptSourceFromString(code, SourceCodeKind.InteractiveCode);
        }