@ andre.m - I use MikeLab.Modbus only in MikeLab.DC360ES… Console app teorically doesn’t know about it’s existance, but in MikeLab.DC360ES after compilation MikeLab.Modbus must be there… I think… ???
It doesn’t find this:
using System;
namespace MikeLab.Modbus
{
public static class ModbusAggregateTypeConverter
{
static Type[] _convert = new Type[6]{ typeof(bool), typeof(short), typeof(ushort), typeof(int), typeof(uint), typeof(float) };
public static Type Convert(byte index)
{
return _convert[index];
}
}
}