I have an application that loads most of its dll's from a subfolder specified in the configuration (myapp.exe.config) file in the attribute
<probing privatePath="subdir"/>
My question is: Can I load a dll (say mydll.dll) at runtime, using only its filename, if it the dll lives in the same subdirectory "subdir" specified in the probing path?
I tried Assembly.LoadFile("mydll.dll")
but that won't search in "subdir".