Ejemplo n.º 1
0
    public void Load(byte[] bytes)
    {
        BinaryHelper helper = new BinaryHelper(bytes);
        int          length = helper.ReadInt();

        m_stringInfoList = new StringInfo[(int)ENStringIndex.MAX];
        for (int index = 0; index < length; ++index)
        {
            StringInfo info = new StringInfo();
            info.Load(helper);
            m_stringInfoList[info.ID] = info;
        }
    }