I am looking for best practices for creating collections made from anonymous types.
There are several approaches - this one and most answers on this thread assume th
You can create collection like this
private IList<(string Name, bool listenToQueue)> _listeners;