blob: f0b973033ea3b13cce64a1369e3ec0b1fa470641 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#load "C:\Users\Roy\source\repos\ConsoleApp8\ConsoleApp8\bin\Debug\lib.csx"
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ConsoleApp8;
public TestResult OnExecute(String msg)
{
lib l = new lib();
l.Show(msg);
return new TestResult() { Value = "This is a return value" };
}
|