It would be great to be able to extend the class OscClient in order to create additional OscClient.Send() method signatures. For example, I often need to send the following type of OSC message:
public void Send(string address, string str, float data1, float data2, float data3)
For some time now, I have used a forked version of OscJack, but it seems that if there was a way for me to extend the OscClient class (currently sealed), that would be the best (I rely several different method signatures for OscClient.Send()
Or maybe there's another approach beside the fork?