public override int GetHashCode()
 {
     unchecked
     {
         return(((FirstChild != null ? FirstChild.GetHashCode() : 0) * 397) ^
                (SecondChild != null ? SecondChild.GetHashCode() : 0));
     }
 }