Skip to content

Instantly share code, notes, and snippets.

View xtellurian's full-sized avatar
🐐

Rian Finnegan xtellurian

🐐
View GitHub Profile
@xtellurian
xtellurian / NfcViewModel.cs
Created September 27, 2017 05:21
Base Class ViewModel (using Fresh MVVM) for working with NFC
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using bmx.Contract;
using bmx.Contract.EventArgs;
namespace bmx.ViewModels
@xtellurian
xtellurian / DroidNfcService.cs
Created September 27, 2017 04:45
Xamarin.Android - Using NFC, and reading HEX id's
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Android.App;
using Android.Content;
using Android.OS;
using Android.Runtime;
using Android.Views;