I have an assembly that loads using Assembly.LoadFrom. This assembly contains several static methods, how can I call them after the assembly is loaded correctly.
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ReflectionSandbox { public class Class1 { public static void TestAPI() { Console.WriteLine("TestAPI"); } } }
source share