Skip to content

Instantly share code, notes, and snippets.

@jfversluis
Created July 4, 2017 07:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jfversluis/5fe5cc78b8e57b22f05619aa21f6ba5e to your computer and use it in GitHub Desktop.
Save jfversluis/5fe5cc78b8e57b22f05619aa21f6ba5e to your computer and use it in GitHub Desktop.
Empty implementation of the value converter
using System;
using System.Globalization;
using Xamarin.Forms;
namespace SampleValueConverters.ValueConverters
{
public class PlatformToColorConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment