15 lines
409 B
C#
Raw Normal View History

2025-04-25 14:35:59 +08:00
using JiShe.CollectBus.Protocol.Interfaces;
2025-04-24 19:31:28 +08:00
2025-04-27 09:16:37 +08:00
namespace JiShe.CollectBus.Protocol.T37612012.Appendix
2025-04-24 19:31:28 +08:00
{
public class Appendix_A17 : IAnalysisStrategy<List<string>, string>
{
public async Task<string> ExecuteAsync(List<string> data)
{
data.Reverse();
string datasStr= string.Join("", data);
return await Task.FromResult(datasStr);
}
}
}