But Ok - I got something from it anyway:
- IChatLobby[] lobbies = ChatApi.GetLobbyArray();
- foreach (IChatLobby lobby in lobbies)
- {
- LobbyInfo li = new LobbyInfo(lobby);
- lbl.Text += "There's currently " + li.ClientCount + " users in " + li.Name;
- }
Only problem is - it returns zero AND if I do
I get an exception: System.NullReferenceException: Object reference not set to an instance of an object.