Ejemplo n.º 1
0
    public void Initialize(BeastEvolve beastEvo)
    {
        string[][] str = beastEvo.getAllPremises(beastEvo);
        int        num = 0;

        for (int i = 0; i < str.Length; i++)
        {
            for (int j = 0; j < str[i].Length; j++)
            {
                if (i >= 5)
                {
                    continue;
                }
                conditionsLabel [num].text = str [i][j];
                num++;
            }
        }
    }