I have an IReliableDictionary and need to take the items in the dictionary and move them in to an IList to return from my reliable service.
It seems I can\'t do a .T
IReliableDictionary implements IEnumerable>, so you can do a ToList.
IReliableDictionary
IEnumerable>
ToList
Maybe ensure the namespace is imported.