uggh, ok last attempt I am sure you follow .. ;)
Member 4364689 wrote:
static bool getX(Nullable<bool> x)
uggh, ok last attempt I am sure you follow .. ;)
Member 4364689 wrote:
static bool getX(Nullable<bool> x)
that didn't quite come out right ( first post :P ) was supposed to be a bool after the Nullable of course static bool getX(Nullable x)
what if x was a nullable boolean ? static bool getX(Nullable x) { if(x==true) { return true; } else { return false; } }