summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IValueConverter.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/IValueConverter.cs')
-rw-r--r--Xamarin.Forms.Core/IValueConverter.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/IValueConverter.cs b/Xamarin.Forms.Core/IValueConverter.cs
new file mode 100644
index 00000000..8702ec3d
--- /dev/null
+++ b/Xamarin.Forms.Core/IValueConverter.cs
@@ -0,0 +1,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);
+ }
+} \ No newline at end of file