Difference between Lookup() and Dictionary(Of list())

前端 未结 6 1402
暖寄归人
暖寄归人 2020-11-27 10:56

I\'m trying to wrap my head around which data structures are the most efficient and when / where to use which ones.

Now, it could be that I simply just don\'t unders

6条回答
  •  长情又很酷
    2020-11-27 11:24

    Another difference not mentioned yet is that Lookup() supports null keys:

    Lookup class implements the ILookup interface. Lookup is very similar to a dictionary except multiple values are allowed to map to the same key, and null keys are supported.

提交回复
热议问题