【发布时间】:2011-10-01 14:56:23
【问题描述】:
如何在下面的示例中使用IList(Of T).Max 函数?
Dim myList as IList(Of Integer)
For x = 1 to 10
myList.add(x)
Next
'Error: 'Max' is not a member of 'System.Collections.Generic.IList(Of Integer)'
MsgBox(myList.Max())
【问题讨论】:
标签: .net vb.net .net-3.5 ilist