void Start()
    {
        if (Pc_MyStringStream())
        {
            if (Pc_MyStringRead())
            {
            }
            else
            {
                Debug.Log("stringRead fail");
            }
        }
        else
        {
            Debug.Log("stringStream fail");
        }
        return;

        m_fStart = Time.time;
        m_fEnd   = 1f;

        myzip.strPath = "C:\\test.zip";
        m_UnZipQueue.Enqueue(myzip);
        UnZipQueue unzip = m_UnZipQueue.Dequeue();

        m_ZipSize = Zip.GetDeCompressFileSize(unzip.strPath);
        Debug.Log("Size = " + m_ZipSize);

        bool bRes = Zip.DeCompression(unzip.strPath, string.Format("{0}/AssetBundles/{1}/", m_local, m_root), ref m_Exception);
    }