public void SendMessage(ACommunicator caller, string msg, int type) { foreach (ACommunicator communicator in list) { if (caller != communicator) { communicator.Receive(msg, type); } } }
public void AddComunicator(ACommunicator a) { list.Add(a); }