public void SetMyRooms(List <IChatRoom> value) { Console.WriteLine($"Setting Rooms {value?.Count} - there is {(GotChatRooms is object ? "" : "not")} a subscriber"); myRooms = value; if (HasChatRooms) { GotChatRooms?.Invoke(); } }
void RaiseGotChatRoomsEvent() { GotChatRooms?.Invoke(this, null); }