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

GetHashCode() public method

public GetHashCode ( ) : int
return int
		public override int GetHashCode() {
			var first = _nodes.ElementAtOrDefault(0);
			var second = _nodes.ElementAtOrDefault(1);
			
			return new { first, second }.GetHashCode();			
		}