public bool Equals()

in SamplesV1/ADFSecurePublish/AdfKeyVaultDeployment/Models/CustomActivityPackageInfo.cs [14:23]


        public bool Equals(CustomActivityPackageInfo other)
        {
            if (PackageLinkedService == other?.PackageLinkedService &&
                PackageFile == other?.PackageFile)
            {
                return true;
            }

            return false;
        }