如何在vb.net中从ArrayList中找到Distinct和Max值
本文关键字:Distinct Max ArrayList vb net 中从 | 更新日期: 2023-09-27 18:25:43
我需要从vb.net中的arraylist中获取distinct和max值假设arraylist的值为(1,1,2,4,5,60)
C#:-
_objarr.ToArray().Distinct().Max(); Result: 60
这在c#中运行良好,但当我转换为VB时
Vb:-
_objarr.ToArray().Distinct().Max()
然后我得到了错误'Distinct' is not a member of 'System.Array'
所以请告诉我如何在vb.net中克服这个错误。
感谢
将使用添加到您的代码
System.Linq;
Distinct
是System.Linq.Enumerable 中定义的扩展方法
在vb.net中,您需要创建数组的实例