Algebra.QL.Form.Type.BaseType.IsChildOf C# (CSharp) Метод

IsChildOf() публичный Метод

public IsChildOf ( IFormType other ) : bool
other IFormType
Результат bool
        public bool IsChildOf(IFormType other)
        {
            if (SuperType != null && (SuperType.Equals(other) || SuperType.IsChildOf(other)))
            {
                return true;
            }

            return false;
        }