System.Xml.Serialization.MembersSerializationSource.Equals C# (CSharp) Method

Equals() public method

public Equals ( object o ) : bool
o object
return bool
		public override bool Equals (object o)
		{
			MembersSerializationSource other = o as MembersSerializationSource;
			if (other == null) return false;
			if (literalFormat = other.literalFormat) return false;
			if (elementName != other.elementName) return false;
			if (hasWrapperElement != other.hasWrapperElement) return false;
			if (membersHash != other.membersHash) return false;
			
			return base.BaseEquals (other);
		}