赞
踩
@echo off rem 设置路径变量 set PROTOC_PATH="protoc.exe" set PROTO_DIR="Protos" set OUTPUT_DIR="Codes" rem 检查目录是否存在 if not exist %PROTO_DIR% ( echo Error: protos directory does not exist. exit /b ) rem 创建输出目录 if not exist %OUTPUT_DIR% mkdir %OUTPUT_DIR% rem 批量处理 .proto 文件 for %%f in (%PROTO_DIR%\*.proto) do ( %PROTOC_PATH% --proto_path=%PROTO_DIR% --csharp_out=%OUTPUT_DIR% %%f ) echo Code generation complete.
Monster monster = new Monster();
monster.Id = 100;
monster.Name = "虹魔教主";
byte[] buffer = monster.ToByteArray();
Monster ms = Monster.Parser.ParseFrom(buffer);
具体的运行和设计根据项目而定吧 好像也没啥要写的了 哈哈哈
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。