protected static bool EitherNull(SemanticTypeBase <T> a, SemanticTypeBase <T> b) { if ((a is null) || (b is null)) { return(true); } return(false); }
public virtual bool Equals(SemanticTypeBase <T> other) { if (other == null) { return(false); } return(Value.Equals(other.Value)); }
protected static bool EitherNull(SemanticTypeBase <T> a, SemanticTypeBase <T> b) { if (((object)a == null) || ((object)b == null)) { return(true); } return(false); }