maui-linux/Xamarin.Forms.Core/IValueConverter.cs

11 строки
293 B
C#
Исходник Обычный вид История

2016-03-22 23:02:25 +03:00
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);
}
}