Parser.OutArcDetail C# (CSharp) 메소드

OutArcDetail() 공개 메소드

public OutArcDetail ( bool &inhib, int &weight ) : void
inhib bool
weight int
리턴 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);
    }