class UDPClient
{
}
class LargeSimulator
{
}
class RemoteLargeSimulatorClient : UDPClient, LargeSimulator
{
}
The saying goes, if you need multiple inheritance, your design is off.
How would I get this done in C# without having to implement anything?