I have a TypeConverter derived from StringConverter in which I have
overridden
GetStandardValuesSupported
GetStandardValues
GetStandardValuesExclusive
IsValid.
Now, initially when I wrote this I did not have an IsValid method and
therefore even if I entered an invalid value for the property on which
my typeconverter is applied to it would accept it.
After I added the IsValid method, I expected this behavior to change
but when I run it under the debugger the IsValid method is not getting
called at all.
Any idea what is happening here?
Thanks.