I\'ve got a problem with the following code (which compiles but crashes):
using System; using System.Collections.Generic; using System.Linq; using System.Text; u
Convert.ChangeType() does not use implicit operators. You'll need to have your MyBoolean type implement IConvertible.
Convert.ChangeType()
IConvertible
The second problem is related. User-defined conversion operators are not used. You'd need to convert it manually before passing it to SetValue().
SetValue()