Current match name>>MatchInfoSnapshot.name

How get single current name?

I did list… but think it wrong for current single.

void Start () {
networkManager.matchMaker.ListMatches(0, 20, “”, true, 0, 0, OnMatchList);
}

public void OnMatchList (bool success, string extendedInfo, List matchList)
{
foreach (MatchInfoSnapshot match in matchList)
{
txt.text = “” + match.name;
}
}

try using

(name of your network manager variable).matchmaker.matchname
or just do .name at the end if matchname doesnt work
hope this helps