18 lines
394 B
C#
18 lines
394 B
C#
using System;
|
|
|
|
namespace Protocol376Simulator.Models
|
|
{
|
|
/// <summary>
|
|
/// 参数生成辅助类
|
|
/// </summary>
|
|
public static class Parameter
|
|
{
|
|
/// <summary>
|
|
/// 创建参数数据
|
|
/// </summary>
|
|
public static byte[] Create(byte paramType, string value)
|
|
{
|
|
return System.Text.Encoding.UTF8.GetBytes(value);
|
|
}
|
|
}
|
|
} |