1.

What are the different code sharing techniques in xamarin forms?

Answer»

There are 3 code sharing techniques in xamarin forms:

  • PCL (Portable CLASS Libraries): It targets different platforms with a common API INTERFACE which provides a platform-specific functionality.
  • Shared Project: We use a shared project to ORGANIZE source code and manage platform-specific requirements using the #if compiler.
  • Dot Net standard libraries: It allows you to implement code to share across different platforms and can be ACCESSED by a large number of .Net APIs.


Discussion

No Comment Found