I'm nitpicking, I know. But when implementing the IConvertible interface on a structure that contains only a boolean value (and thus has only two states) what is the recommended value to return from IConvertible.GetTypeCode()? The structure is implicitly convertible and comparable to boolean and in nearly every aspect other than string and XML representation, it's effectively a boolean.
I feel like I'm lying to the framework if I return TypeCode.Boolean but TypeCode.Object seems unnecessarily vague. Are there any real-world consequences for implementing this method in your own structures?