using System; using System.Collections.Generic; namespace Misaki.GraphView { public interface IValueConverterManager { public void AddConverter(IValueConverter converter); public bool CanConvert(); public bool CanConvert(Type sourceType, Type targetType); public bool TryConvert(TSource source, out TTarget target); public bool TryConvert(Type sourceType, Type targetType, object source, out object target); } }