Hi, I have a requirement to implement BLEDeviceManager class which will be able to communicate to any BLE DEVICE. I started to look something about it and found that a manager class inherits delegate protocols in iOS such as CBCentralMangerDelegate and CBPeripheralDelegate. I believe we could achieve by inheriting multiple base classes in objective C like this :
@interface BLEDeviceManager : NSObject <CBCentralManagerDelegate, CBPeripheralDelegate> but if I tried something like this in c# ( public class BLEDeviceManager:CBCentralManagerDelegate,CBPeripheralDelegate ) got an error : classes cannot have multiple base classes which i believe is not permitted in C# language. Is there any workaround specially for this case.
Thank you