BlueSky.Windows.MissingValuesDialog.isMissingModified C# (CSharp) Method

isMissingModified() private method

private isMissingModified ( ) : bool
return bool
        private bool isMissingModified()
        {
            if (oldmisvals != null && misvals != null)
            {
                if ((misvals.Count != oldmisvals.Count)) //count is different then something has been modified
                    return true;
                for (int i = 0; i < misvals.Count; i++)// if any of the value has changed
                {
                    if (misvals.ElementAt(i) != oldmisvals.ElementAt(i))
                        return true;
                }
            }
            if (oldMisType != mistype) // if missing type has been changed
                return true;

            return false;
        }