Convert IReliableDictionary to IList

前端 未结 2 1135
猫巷女王i
猫巷女王i 2020-12-21 19:29

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

2条回答
  •  南方客
    南方客 (楼主)
    2020-12-21 20:05

    IReliableDictionary implements IEnumerable>, so you can do a ToList.

    Maybe ensure the namespace is imported.

提交回复
热议问题