Python for .NET: How to explicitly create instances of C# classes using different versions of the same DLL?
I have a .cs file like namespace SomeNamepace { public struct SomeStruct { .... } public static class SomeClass { .... } So far I use it with PythonNET like import clr clr.AddReference('c:\\Test\Module.dll') from SomeNamepace import SomeClass, SomeStruct SomeClass.SomeMethod(...) My problem is now that I need to work with dlls with identical names and no version number set, so PythonNET will not see them as two different dlls but as the same. Even if I import them using the full path with AddReference. Now I would like to use them explicitly as stated here: Python for .NET: Using same .NET