зеркало из https://github.com/DeGsoft/maui-linux.git
11 строки
293 B
C#
11 строки
293 B
C#
|
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);
|
|||
|
}
|
|||
|
}
|