public override int GetHashCode()

in docker_images/csharp/wrapper/src/Models/BlobStorageInfo.cs [150:168]


        public override int GetHashCode()
        {
            unchecked // Overflow is fine, just wrap
            {
                var hashCode = 41;
                // Suitable nullity checks etc, of course :)
                    if (BlobName != null)
                    hashCode = hashCode * 59 + BlobName.GetHashCode();
                    if (ContainerName != null)
                    hashCode = hashCode * 59 + ContainerName.GetHashCode();
                    if (CorrelationId != null)
                    hashCode = hashCode * 59 + CorrelationId.GetHashCode();
                    if (HostName != null)
                    hashCode = hashCode * 59 + HostName.GetHashCode();
                    if (SasToken != null)
                    hashCode = hashCode * 59 + SasToken.GetHashCode();
                return hashCode;
            }
        }