/// <summary> /// Determines whether the specified QLambda is equal to the current QLambda. /// </summary> /// <param name="l">The QLambda to compare with the current QLambda.</param> /// <returns>true if the specified QLambda is equal to the current QLambda; otherwise, false</returns> public bool Equals(QLambda l) { if (l == null) { return(false); } return(_expression.Equals(l._expression)); }
/// <summary> /// Determines whether the specified QLambda is equal to the current QLambda. /// </summary> /// <param name="l">The QLambda to compare with the current QLambda.</param> /// <returns>true if the specified QLambda is equal to the current QLambda; otherwise, false</returns> public bool Equals(QLambda l) { if (l == null) { return false; } return _expression.Equals(l._expression); }
private void WriteLambda(QLambda l) { _writer.Write((sbyte)QType.Lambda); _writer.Write((byte)0); WriteString(l.Expression.ToCharArray()); }
private void WriteLambda(QLambda l) { writer.Write((sbyte)QType.Lambda); writer.Write((byte)0); WriteString(l.Expression.ToCharArray()); }