I have a Xamarin.iOS solution in Visual Studio that includes a couple C++ static library references. I have built these myself and have access to the source C++, and I know that debugging is possible in VC++ iOS. My C# code integrates with the libraries using PInvoke DllImport
. Is there a way to debug these libraries using Visual Studio?
Asked
Active
Viewed 340 times
4

Joseph
- 903
- 1
- 10
- 25
-
I'm looking at http://lldb.llvm.org/tutorial.html now. Maybe that will work instead? – Joseph Mar 20 '18 at 16:27
-
Have you found the solution. I think we can debug it in VS: https://stackoverflow.com/a/12517093/9125096 – Fletcher Mar 21 '18 at 06:02
-
I don't see that option in Xamarin.iOS projects, nor do I see it in my C# (.NET Standard) project that contains the `DllImport`. I think that's referring to projects targeting .NET Framework. – Joseph Mar 21 '18 at 14:16
-
I have been using LLDB to debug the simulator. It's not as nice as VS, but it is my only option at this point. – Joseph Mar 21 '18 at 14:24