예제 #1
0
 public void AddParticipant(Participant participant)
 {
     Participants[participant.Name] = participant;
 }
예제 #2
0
 public abstract void Send(Participant from, Participant to, string message);
예제 #3
0
 public void Send(Participant to, string message)
 {
     Chatroom.Send(this, to, message);
 }