Etg.Yams.Storage.Config.AppDeploymentConfig.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            unchecked
            {
                int hashCode = (base.GetHashCode()*397) ^ (TargetClusters != null ? HashCodeUtils.GetHashCode(TargetClusters) : 0);
                return hashCode;
            }
        }