I recommend using Assembly Binding Log Viewer (fuslogvw.exe) for
corresponding .NET framework to see the log files of loading assemblies.
Set Log Location as Custom and in Settings point to your assemblies folder.
The log should show the sequence of DLLs being loaded and any errors.
This worked f
I've seen something at least similar to this when the DLL I'm trying to use
references a type in another DLL. When I copied that other DLL to the same
location, it worked fine.
In this situation, equivalent code in C# worked fine without the other DLL, but
Python gave an error similar to what y
Hi,
We are using Python for .Net to create an API.
C# Assembly is called by Python script to access API methods.
import sys
sys.path.append(r"C:\myfolderA\myfolderB")
print sys.path
import clr
clr.FindAssembly(r"AA.BB.CC")
clr.AddReference(r"AA.BB.CC")
from AA.BB.CC.Api.DDInterface import DDClient