class UDPClient { } class LargeSimulator { } class RemoteLargeSimulatorClient : UDPClient, LargeSimulator { }
The saying goes, if you need multip
To get multiple inheritance the way you want it, you need to make your UDPClient and LargeSimulator interface instead of class.
interface
class
Class multiple inheritance isn't possible in C#