CFGLib.Parsers.Forests.Family.Equals C# (CSharp) Method

Equals() public method

public Equals ( Object other ) : bool
other Object
return bool
		public override bool Equals(Object other) {
			if (other == null) {
				return false;
			}
			var localOther = other as Family;
			if (localOther == null) {
				return false;
			}

			return _nodes.SequenceEqual(localOther._nodes);
		}
	}