1 Star 0 Fork 1.2K

gisinaction/project_8049763

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
MessageHelper.cs 615 Bytes
一键复制 编辑 原始数据 按行查看 历史
koko 提交于 2019-10-19 22:04 +08:00 . 远程协助-重构V1
using SiMay.Net.SessionProvider.Core;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SiMay.Net.SessionProviderService
{
public class MessageHelper
{
public static byte[] CommandCopyTo(MsgCommand cmd, byte[] data)
{
byte[] bytes = new byte[data.Length + 1];
bytes[0] = (byte)cmd;
data.CopyTo(bytes, 1);
return bytes;
}
public static byte[] CommandCopyTo(MsgCommand cmd)
{
return new byte[] { (byte)cmd };
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/springjava/SiMayRemoteMonitorOS.git
git@gitee.com:springjava/SiMayRemoteMonitorOS.git
springjava
SiMayRemoteMonitorOS
project_8049763
master

搜索帮助