public TResponse ExecuteCustomMessage<TResponse>(IModbusMessage request)
where TResponse : IModbusMessage, new()
what is the above means? I have never see anything like that before, although I've been coding in C# for couple of years now... It is supposed to be a function, but I am not sure what is this < > and keyword where and new() at the end...
TResponsemust be a subclass ofIModbusMessageor whatever that is, and there must be a constructor that takes no arguments. In many cases this means you want to construct new objects ofTResponsein your class. – CommuSoft Mar 15 '12 at 3:42