ios-samples/BindingSample/XMBindingLibrarySample
Mykyta Bondarenko 027e4bee00 Fixed binding sample (#350)
* Update XMBindingLibrarySample.csproj

* Delete .gitignore

* added `AllowUnsafeBlocks` to library
2019-01-17 08:58:53 -08:00
..
Resources
ViewControllers
AppDelegate.cs
Info.plist
Main.cs
README.md
XMBindingLibrarySample.csproj

README.md

XMBindingLibrarySample Sample Application

This project contains our Xamarin.iOS sample. It has a reference to XMBindingLibrary.dll and makes calls to our native library written in Objective-C from C#.

Example:

var utility = new XMUtilities();
var result = utility.Hello("Developer");

Console.WriteLine(result);