I've created a WPF converter class:
public class DoubleConverter : IValueConverter
{
public object Convert(object value, Type TargetType, object parameter, CultureInfo culture)
{
//blah blah
}
}
I wonder who sets the culture parameter that is passed. I would expect it to be the same as the current windows settings, but it appears to be different.
Anyone?