Home > Back-end >  How can I debug .a libs(c and I have source code) in a Xamarin.forms project?
How can I debug .a libs(c and I have source code) in a Xamarin.forms project?

Time:11-24

I have a Xamarin.Forms project and there are also some .a libs(C ) referenced in Xamarin.iOS project.

Xamarin.Forms project

  ------codes

Xamarin.iOS project

  ------codes

  ------.a libs(c  )

I do have the source code of those .a C libs.

The question is that is there a way that I can debug the C source code when running the Xamarin.forms project?

Update:

I just followed enter image description hereTo debug the class libraries in Visual Studio, you must disable Just My Code under the Debug > Options menu. In the Debugging > General node, clear the Enable Just My Code checkbox:

Please check this link for full debug tutorial: Link

  • Related