I am checking for an assembly through:
var asm = Assembly.LoadFile
and I am accessing to a specific type and I'm trying to get the parameters of a specific method.
The problem is that some of the parameters Type is defined in another assembly and this method throws me an exception saying that cannot find the assembly:
{"Could not load file or assembly 'project.POCO, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.":"project.POCO, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"}
How can I set up to this run OK? Everyone?
Thanks :)
As MSDN states:
So you should use
Assembly.LoadFrom
, notAssembly.LoadFile
.