hi ,
I load my assembly at runtime (but this assemby is not refenced by the project)
Assembly a = Assembly.LoadFile(@"fulpath\assName.dll");
after that I want to use one class from this dll by reflection
obj = Activator.CreateInstance(Type.GetType("assemblyqualifiedname"));
mi = obj.GetType().GetMethod("methodname");
mi.Invoke(obj, null);
unfortunately , bull returns from Type.GetType("assemblyqualifiedname");
I dont understand , why I must to add reference od dll to project ?
Load assembly should be enough , but it doesnt .
thanks ...