We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57b0188 commit 8c3a93cCopy full SHA for 8c3a93c
VM/Program.cs
@@ -24,7 +24,6 @@ static void Main(string[] args)
24
Console.WriteLine(s.ToString());
25
}
26
Console.WriteLine("---STACK END---");
27
- Console.WriteLine(typeof(String).AssemblyQualifiedName);
28
Console.ReadLine();
29
30
@@ -139,11 +138,12 @@ public void Run(int Offset)
139
138
var method = Type.GetType(type).GetMethod(voidname, types);
140
141
var rez = method.Invoke(null, arguments);
142
- if (rez != typeof(void))
+ if (rez != null)
143
{
144
push(rez);
145
146
+ Offset += 20 + argcount * 8;
147
break;
148
149
case 0x91: //Pop
0 commit comments