Ejemplo n.º 1
0
 /*----------------------------------------------------------------------------------------*/
 /// <summary>
 /// Determines whether the specified object matches the condition.
 /// </summary>
 /// <param name="value">The object to test.</param>
 /// <returns><see langword="True"/> if the object matches, otherwise <see langword="false"/>.</returns>
 public override bool Matches(T value)
 {
     return(LHS.Matches(value) && RHS.Matches(value));
 }