Quote Originally Posted by Paul McKenzie View Post
Code:
 bool  xx = (f.GetMethod ( ) == whatever_you_say_means_true)?true:false;
Regards,

Paul McKenzie
I think this suggestion is spot-on. But assuming the implementors of this bridge object knew what they were doing, I think they were wanting to use bool to represent non-zero enums. So, instead if finding out which enum to match to for all the test classes, I think only this will suffice:

Code:
bool xx = f.GetMethod() != 0;