/// <summary>
        /// Returns the hash code for the <see cref="Syncfusion.UI.Xaml.TreeGrid.TreeGridRowInfo"/> instance.
        /// </summary>
        /// <returns>
        /// Returns the hash code
        /// </returns>
        public override int GetHashCode()
        {
            var rowDataHashCode = RowData == null ? 0 : RowData.GetHashCode();

            return(rowDataHashCode ^ RowIndex);
        }