public static object Or(object x, object y) { if (ObjectValue.IsBool(x, y)) { return(BooleanValue.Or((bool)x, (bool)y)); } return(null); }
public static bool Add(bool b1, bool b2) { return(BooleanValue.Or(b1, b2)); }