CJT188HelperReadValueT 方法 |
读取数据的数组信息,需要指定如何从字符串转换的功能方法
命名空间:
HslCommunication.Instrument.CJT.Helper
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public static OperateResult<T[]> ReadValue<T>(
ICjt188 cjt,
string address,
ushort length,
Func<string, T> trans
)
Public Shared Function ReadValue(Of T) (
cjt As ICjt188,
address As String,
length As UShort,
trans As Func(Of String, T)
) As OperateResult(Of T())
public:
generic<typename T>
static OperateResult<array<T>^>^ ReadValue(
ICjt188^ cjt,
String^ address,
unsigned short length,
Func<String^, T>^ trans
)
static member ReadValue :
cjt : ICjt188 *
address : string *
length : uint16 *
trans : Func<string, 'T> -> OperateResult<'T[]>
参数
- cjt
- 类型:HslCommunication.Instrument.CJT.HelperICjt188
CJT188的通信对象 - address
- 类型:SystemString
地址信息 - length
- 类型:SystemUInt16
数据长度 - trans
- 类型:SystemFuncString, T
转换方法
类型参数
- T
- 类型信息
返回值
类型:
OperateResultT包含泛型数组的结果对象
参见