I changed my converter from IValueConverter to IMultiValueConverter : Previously I converted int to string :
[ValueConversion(typeof(int), typeof(string))]
But now I convert an int and a double to a string.
How should I specify my ValueConversion attribut now ? I have two input and one output now.