Lucene.Net.Search.BooleanClause.Equals C# (CSharp) Метод

Equals() публичный Метод

Returns true if o is equal to this.
public Equals ( System o ) : bool
o System
Результат bool
		public  override bool Equals(System.Object o)
		{
			if (o == null || !(o is BooleanClause))
				return false;
			BooleanClause other = (BooleanClause) o;
			return this.Query.Equals(other.Query) && this.occur.Equals(other.occur);
		}