ILRepack.IntegrationTests/Scenarios/ClassLibrary/DummyConverter.cs (17 lines of code) (raw):
using System;
using System.Globalization;
using System.Windows.Data;
namespace ClassLibrary
{
public class DummyConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
return "Dummy";
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
}