InstantReactionLoader.loadInstantReactionReactants C# (CSharp) Метод

loadInstantReactionReactants() приватный Метод

private loadInstantReactionReactants ( XmlNode node, InstantReaction, ir ) : bool
node XmlNode
ir InstantReaction,
Результат bool
    private bool loadInstantReactionReactants(XmlNode node, InstantReaction ir)
    {
        foreach (XmlNode attr in node)
          if (attr.Name == "reactant")
        loadInstantReactionReactant(attr, ir);
        return true;
    }