Horje
c# loading assembly at runtime Code Example
c# loading assembly at runtime
using System.Reflection;

var dll = Assembly.LoadFile(@"C:\assembly.dll"); // full path requied
Type type = dll.GetType("myNamespace.myClass");
dynamic c = Activator.CreateInstance(type);
c.myPublicMethod();




Csharp

Related
unity dictionary check if key exists Code Example unity dictionary check if key exists Code Example
time.timescale Code Example time.timescale Code Example
top most wishlisted games on steam Code Example top most wishlisted games on steam Code Example
destroy gameobject unity Code Example destroy gameobject unity Code Example
c# play wav file Code Example c# play wav file Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9