| 1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SKMC.Api.Device.Adapter.Vision
- {
- /// <summary>
- /// 结果字符串解析接口
- /// </summary>
- public interface IResultParser<T>
- {
- /// <summary>
- /// 将结果字符串解析并注入到目标对象中
- /// </summary>
- /// <param name="t">目标对象</param>
- /// <param name="resultMsg">结果字符串</param>
- /// <returns></returns>
- void Parse(ref T t, string resultMsg);
- }
- }
|