BcsExplorerDemo.MenuItemVisitor.VisitReactant C# (CSharp) 메소드

VisitReactant() 보호된 메소드

protected VisitReactant ( BcsReactantNode bcsReactant ) : void
bcsReactant BcsResolver.Parser.BcsReactantNode
리턴 void
        protected override void VisitReactant(BcsReactantNode bcsReactant)
        {
            var item = new MenuItem() { Title = $"Reactant: {bcsReactant.Coeficient} {GetComplexFullName(bcsReactant.Complex)}" };

            AddToTree(bcsReactant, item);
        }