summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IValueConverter.cs
blob: 8702ec3d80a1dc62b4b29f730c287759002e10f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;
using System.Globalization;

namespace Xamarin.Forms
{
	public interface IValueConverter
	{
		object Convert(object value, Type targetType, object parameter, CultureInfo culture);
		object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture);
	}
}