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
Post a Comment