DataDictionary.Types.Structure.InterfaceIsInherited C# (CSharp) Méthode

InterfaceIsInherited() public méthode

Indicates if the structure implements the interface provided as parameter
public InterfaceIsInherited ( Structure anInterface ) : bool
anInterface Structure
Résultat bool
        public bool InterfaceIsInherited(Structure anInterface)
        {
            bool retVal = false;
            if (anInterface.IsAbstract && anInterface != this)
            {
                retVal = ImplementedStructures.Contains(anInterface);
            }
            return retVal;
        }