private bool Equals(ExplicitCastExpression other) => _type == other._type && Equals(Operand, other.Operand);
示例#2
0
 private bool Equals(ExplicitCastExpression other)
 => _type == other._type && ExpressionEqualityComparer.Instance.Equals(Operand, other.Operand);