-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcompilecsharp.prg
72 lines (56 loc) · 1.6 KB
/
compilecsharp.prg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
* IN YOUR APP PUT THIS LINES AT STARTUP
* do (getenv("Userprofile") + "\kwruntime\kodnet\loader.prg")
* _screen.kodnetLoader.load("v6")
if type("_screen.kodnetLoader.v6") == "U" or isnull(_screen.kodnetLoader.v6)
* Execute init.prg
MESSAGEBOX("Por favor ejecute el archivo init.prg primero. (Please execute first init.prg)", 64, "")
return
endif
local kodnet
kodnet = _screen.kodnetLoader.v6
TEXT TO m.code noshow
using System;
public class program{
public static void main(){
}
}
namespace Compiled
{
public class Person{
public string name;
public int age;
}
public class Test
{
public Person person(string name, int age){
var p= new Person();
p.name= name;
p.age= age;
return p;
}
public static int ExecuteFunc(Func<string,int> func)
{
return func("Method executed from .NET");
}
public static int ExecuteFunc(Func<string,int> func, string message)
{
return func(message);
}
public static int ExecuteFunc(Func<string,int,string,int> func, string message, int option, string title)
{
return func(message,option,title);
}
}
}
ENDTEXT
LOCAL engine
* COMPILE C# CODE
Local asem, test, person
engine= m.kodnet.COM.getStaticWrapper("jxshell.csharplanguage").construct()
m.engine.Runscript(m.code)
asem = m.engine.getCompiledAssembly()
m.kodnet.COM.loadAssembly(m.asem)
* now you can use the type compiled
test= m.kodnet.COM.getStaticWrapper("Compiled.Test").construct()
person= test.person("James", 24)
?"Your name is " + m.person.name + " and your age is: " + allt(str(m.person.age))