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

ICoerce.cs « Xamarin.PropertyEditing - github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 77237177a0d3e7bb9435fcd042ea100e6c3979f8 (plain)
1
2
3
4
5
6
7
namespace Xamarin.PropertyEditing
{
	public interface ICoerce<T>
	{
		T CoerceValue (T value);
	}
}