QFrameworkLua.LuaLoader.ReadFile C# (CSharp) Method

ReadFile() public method

当LuaVM加载Lua文件的时候,这里就会被调用, 用户可以自定义加载行为,只要返回byte[]即可。
public ReadFile ( string fileName ) : byte[]
fileName string
return byte[]
        public override byte[] ReadFile(string fileName) {
            return base.ReadFile(fileName);     
        }
    }