Tagged Questions
2
votes
4answers
1k views
Why does my converter giving an invalid cast error?
I created a Converter to convert from double to integer.
But the line "return (int)value;" always gets a "specified cast is not valid."
What do I have to do so that my Converter successfully ...