ABB.Swum.FieldRule.InClass C# (CSharp) Метод

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

Determines whether the supplied ProgramElementNode matches the conditions of this rule.
public InClass ( ProgramElementNode node ) : bool
node ABB.Swum.Nodes.ProgramElementNode The ProgramElementNode to test.
Результат bool
        public override bool InClass(ProgramElementNode node)
        {
            return (node is FieldDeclarationNode);
        }