CNAS取数仪器端升级
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IDataParsing.cs 613B

4 months ago
12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CNAS_PortDataParsing
  7. {
  8. public interface IDataParsing
  9. {
  10. /// <summary>
  11. /// 解析字符串数据
  12. /// </summary>
  13. /// <param name="strData"></param>
  14. /// <returns></returns>
  15. string DataParsingString(string strData);
  16. /// <summary>
  17. /// 解析字节数组数据
  18. /// </summary>
  19. /// <param name="byteData"></param>
  20. /// <returns></returns>
  21. Byte[] DataParsingByte(Byte[] byteData);
  22. }
  23. }