/// <summary> /// Serves as a hash function for a particular type. /// </summary> /// <returns> /// A hash code for the current <see cref="T:System.Object"/>. /// </returns> public override int GetHashCode() { unchecked { var hashCode = (WorkflowID != null ? WorkflowID.GetHashCode() : 0); hashCode = (hashCode * 397) ^ (ActivityID != null ? ActivityID.GetHashCode() : 0); hashCode = (hashCode * 397) ^ (ScenarioID != null ? ScenarioID.GetHashCode() : 0); return(hashCode); } }
/// <summary> /// Serves as a hash function for a particular type. /// </summary> /// <returns> /// A hash code for the current <see cref="T:System.Object"/>. /// </returns> public override int GetHashCode() { unchecked { var hashCode = WorkflowID?.GetHashCode() ?? 0; hashCode = (hashCode * 397) ^ (ActivityID?.GetHashCode() ?? 0); hashCode = (hashCode * 397) ^ (ScenarioID?.GetHashCode() ?? 0); return(hashCode); } }