我得到了一项改变vb.net项目的一些任务。由于我大部分时间都在使用C#,因此我遇到了一些问题。
我想知道的是如何创建一个返回整数列表的方法,在C#中就像private List<int> NameOfMethod()
一样。
所以我尝试了类似的事情:
Private Sub GetSourcesInfo() As
这个方法需要返回整数列表,我怎样才能在VB.net中实现呢?
答案 0 :(得分:2)
那将是一个功能:
Private Function GetSourcesInfo() As List(Of Integer)
' code that builds a List(Of Integer)
End Function
答案 1 :(得分:1)
在VB中,您可以使用关键字Of
Private Function GetSourcesInfo() As List(Of Integer)
这可能导致括号链接语句对于来自C#的人来说看起来很有趣,比如
Dim someList As New List(Of Integer)() ' Calls the constructor