Esempio n. 1
0
        public void TestExecuteForHelp()
        {
            string testscript = "-help";

            //ManagedExtCS cs = ManagedExtCS.Instance();
            ManagedExtCS.Execute(testscript);
        }
Esempio n. 2
0
        public void TestExecuteForPath()
        {
            string testscript = "-p:C:\testscript.csx";

            //ManagedExtCS cs = ManagedExtCS.Instance();
            ManagedExtCS.Execute(testscript);
        }
Esempio n. 3
0
        public void TestExecute()
        {
            string testscript = "int i=2+3;System.Diagnostics.Debug.WriteLine(i);";

            //ManagedExtCS cs = ManagedExtCS.Instance();
            ManagedExtCS.Execute(testscript);
        }