How to Create a DLL in Xamarin Studio (C#) -


how can export codes external library file (dll) in xamarin studio. use c#.

please explain how define functions , export them?! (this main confusion)

thanks :)

right click project, select options. under build -> general see group code generation. set compilation target library, in order tell xamarin studio generate dll instead of executable file.

technically, there not big difference between .net executable , class library both assemblies containing compiled classes. executable file additionally contains main method, called when file executed. both types can referenced other .net code use classes , methods of assembly.


Comments

Popular posts from this blog

sql - invalid in the select list because it is not contained in either an aggregate function -

Angularjs unit testing - ng-disabled not working when adding text to textarea -

How to start daemon on android by adb -