Hello, I previously asked about an error that I returned when loading my assembly. But now my question is once loaded as I start it? The code of the function is.
internal static Assembly AssemblyHome(byte[] data)
{
What I do is:
var a = AssemblyHome(data);
a.EntryPoint.Invoke(null,null);
My program has an entrypoint and everything, but once I write it down, how can I invoke it?