Parser.OutArcDetail C# (CSharp) Méthode

OutArcDetail() public méthode

public OutArcDetail ( bool &inhib, int &weight ) : void
inhib bool
weight int
Résultat void
    void OutArcDetail(ref bool inhib, ref int weight)
    {
        inhib = false;
        Expect(7);
        while (la.kind == 10) {
            Get();
        }
        if (la.kind == 1) {
            Get();
            int.TryParse(t.val, out weight);

        }
        while (la.kind == 10) {
            Get();
        }
        Expect(6);
    }