For example, I have two projects let's say project A and project B. I have the source code of project A and project B.
Then in my project A, there are some .a
files made by project B. Project A use those .a files to compile and run.
The question is, when I run project A, I want to debug the codes in those .a
file. Is it possible? If possible, how can I do it?
I'm using Visual Studio for Mac.
Note: Project A is written in C# and Project B is written in C++.
It‘s a Xamarin project.