我需要在 VB .NET 中的 ListBox 组件上显示一个列表。

// params is a string representing a path, empty means root folder
params.itemsPath = ""

// resp is a response object, here it is a String[]
resp = myAPI.browseTags(params)

Dim listSize As Integer
listSize = resp.itemsList.GetLength

Dim i As Integer
For i = 0 To listSize
    ListBox1.Items.Add(resp.itemsList(i).itemName)
Next

我不熟悉 VB .NET,这应该是一个非常简单的问题,但我需要帮助!

代码“resp.itemsList.GetLength”带有蓝色下划线,并且有一个工具提示,内容如下:

“未为‘公共(public)函数 GetLength(dimension As Integer) As Integer’的参数‘dimension’指定参数”。

我在这里做错了什么?
提前致谢!

最佳答案

试试 GetLength(0)
来自 MSDN documentation :

关于list - 如何在 VB .NET 中获取列表大小?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4215087/

10-12 19:24