Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IPropertyConverter.cs « Xamarin.PropertyEditing.Tests - github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d83fcc76c760056ceca2b0806c0809e0a9dea4f3 (plain)
1
2
3
4
5
6
7
8
9
using System;

namespace Xamarin.PropertyEditing.Tests
{
	interface IPropertyConverter
	{
		bool TryConvert<TFrom> (TFrom fromValue, Type toType, out object toValue);
	}
}