public string[] GetRoomMembers(string roomId) { return(currentRooms.GetRoom(roomId)?.Members.Select(x => x.Value.Name).ToArray() ?? new string[0]); }