HibernatingRhinos.PhoneBook.Library.Entry.Equals C# (CSharp) 메소드

Equals() 공개 메소드

public Equals ( Entry other ) : bool
other Entry
리턴 bool
		public bool Equals(Entry other)
		{
			if (ReferenceEquals(null, other)) return false;
			if (ReferenceEquals(this, other)) return true;
			return Equals(other.FirstName, FirstName) && Equals(other.LastName, LastName) && Equals(other.Type, Type) && Equals(other.Number, Number) && other.PositionInFile == PositionInFile;
		}

Same methods

Entry::Equals ( object obj ) : bool