using System; namespace Protocol376Simulator.Models { /// /// 参数生成辅助类 /// public static class Parameter { /// /// 创建参数数据 /// public static byte[] Create(byte paramType, string value) { return System.Text.Encoding.UTF8.GetBytes(value); } } }