ios-samples/BindingSample/XMBindingLibrarySample
Rolf Bjarne Kvinge c48c4d648c
Add .editorconfig and fix formatting accordingly. (#471)
The new .editorconfig is copied from the one in xamarin/xamarin-macios.

Formatting was fixed using 'dotnet format whitespace --folder .'
2023-02-17 14:55:43 +01:00
..
Resources Updated the 'BindingSample' sample (#339) 2019-01-16 09:51:51 -08:00
ViewControllers Add .editorconfig and fix formatting accordingly. (#471) 2023-02-17 14:55:43 +01:00
AppDelegate.cs Add .editorconfig and fix formatting accordingly. (#471) 2023-02-17 14:55:43 +01:00
Info.plist Updated the 'BindingSample' sample (#339) 2019-01-16 09:51:51 -08:00
Main.cs Add .editorconfig and fix formatting accordingly. (#471) 2023-02-17 14:55:43 +01:00
README.md Updated the 'BindingSample' sample (#339) 2019-01-16 09:51:51 -08:00
XMBindingLibrarySample.csproj Updated the 'BindingSample' sample (#339) 2019-01-16 09:51:51 -08:00

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);