My C# project is referencing managed dll that has dependencies on a native dll. Therefore, before calling managed dll function I copy native dll to folder: Path.GetDirectoryName(Assembly.GetAssembly(typeof(ManagedDllClass)).Location)
.
I'm still, however, encountering the problem where while performing a native call my debugger is hanging. What can be the cause of this? What is the preferred way of dealing with the situation where referenced managed dll is depending on a native dll?
Thanks