예제 #1
0
파일: Literal.cs 프로젝트: dotnet/ef6tools
 public bool Equals(Literal <T_Identifier> other)
 {
     return(null != other &&
            other._isTermPositive == _isTermPositive &&
            other._term.Equals(_term));
 }