Пример #1
0
        public bool EqualComponentInfo(VoicepackExtended other)
        {
            if (Voicepack?.componentInformation == null && other.Voicepack?.componentInformation == null)
            {
                return(true);
            }
            if (Voicepack?.componentInformation == null || other.Voicepack?.componentInformation == null)
            {
                return(false);
            }

            return(VoicepackComparer.EqualComponentInformation(Voicepack.componentInformation,
                                                               other.Voicepack.componentInformation));
        }