如何在VB.net中写这个lambda选择方法?

前端之家收集整理的这篇文章主要介绍了如何在VB.net中写这个lambda选择方法?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
因为我试过这个:
Dim exampleItems As Dictionary(Of String,String) = New Dictionary(Of String,String)
Dim blah = exampleItems.Select (Function(x) New (x.Key,x.Value)).ToList 'error here

但是我收到一个语法错误,所有我在C#中看到的例子.

这将是:
Dim blah = exampleItems.Select (Function(x) New With { .Key = x.Key,.Value = x.Value }).ToList

有关详细信息,请参阅Anonymous Types.(根据使用情况,您可能还需要使用Key keyword标记键或值.)

就是说,Dictionary(Of TKey,Of TValue)已经是一个IEnumerable(OfValuePair(TKey,Of TValue)),所以你也可以做:

Dim blah = exampleItems.ToList

并且您将有一个KeyValuePair列表,它已经有一个Key和Value属性.这真的意味着没有必要使匿名类型.

原文链接:https://www.f2er.com/vb/255634.html

猜你在找的VB相关文章