小编New*_*bie的帖子

unity 当前上下文中不存在名称“解压缩”

请帮我解决这个错误,我搜索了很多但一无所获。

/*====== Copyright (c) 2013-2014 Qualcomm Connected Experiences, Inc. All Rights Reserved. Qualcomm Confidential and Proprietary =========*/

using System.IO; 
using UnityEditor;

namespace Vuforia.EditorClasses  { 

    /// <summary> 
    /// class wrapping a JS functionality to unzip a file, registers itself at the Unzipper Singleton to provide the functionality. 
    /// </summary>
    [InitializeOnLoad] 
    public class SharpZipLibUnzipper : IUnzipper { 
        /// <summary> 
        /// register an instance of this class at the singleton immediately 
        /// </summary> 
        static SharpZipLibUnzipper() {
            Unzipper.Instance = new SharpZipLibUnzipper(); 
        } 

        public Stream …
Run Code Online (Sandbox Code Playgroud)

c# unity-game-engine

2
推荐指数
1
解决办法
5121
查看次数

标签 统计

c# ×1

unity-game-engine ×1