Exemple #1
0
    public void ReadData(UMessage msg)
    {
        number = msg.ReadChar();
        si.Clear();
        for (int index = 0; index < (int)number; index++)
        {
            SortInfo tempsi = new SortInfo();
            tempsi.ReadData(msg);
            si.Add(tempsi);
        }

        god.ReadData(msg);
    }