声明一个 VB.net 方法,它将 return 整数列表
Declare a VB.net method which will return list of integers
我接到了一项任务,要更改 vb.net 项目中的一些内容。由于我大部分时间都在使用 C#,所以我在某些方面遇到了一些问题。
我想知道的是如何创建一个方法来 return 整数列表,在 C# 中类似于 private List<int> NameOfMethod()
.
所以我正在尝试类似的方法:
Private Sub GetSourcesInfo() As
并且此方法需要 return 整数列表,我如何在 VB.net 中实现?
那将是一个函数:
Private Function GetSourcesInfo() As List(Of Integer)
' code that builds a List(Of Integer)
End Function
在 VB 中,您使用关键字 Of
指定通用参数
Private Function GetSourcesInfo() As List(Of Integer)
这可能导致括号链接语句,对于 C# 的人来说看起来有点滑稽,比如
Dim someList As New List(Of Integer)() ' Calls the constructor
我接到了一项任务,要更改 vb.net 项目中的一些内容。由于我大部分时间都在使用 C#,所以我在某些方面遇到了一些问题。
我想知道的是如何创建一个方法来 return 整数列表,在 C# 中类似于 private List<int> NameOfMethod()
.
所以我正在尝试类似的方法:
Private Sub GetSourcesInfo() As
并且此方法需要 return 整数列表,我如何在 VB.net 中实现?
那将是一个函数:
Private Function GetSourcesInfo() As List(Of Integer)
' code that builds a List(Of Integer)
End Function
在 VB 中,您使用关键字 Of
Private Function GetSourcesInfo() As List(Of Integer)
这可能导致括号链接语句,对于 C# 的人来说看起来有点滑稽,比如
Dim someList As New List(Of Integer)() ' Calls the constructor