将列表作为参数传递

将列表作为参数传递

本文介绍了将列表作为参数传递的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何将列表作为参数传递给函数

how to pass a list as an argument to a function

推荐答案

Public Sub New()
    InitializeComponent()
    Dim myList As New List(Of String)()
    ModifyList(myList)
    MessageBox.Show(myList.Count.ToString())
End Sub

Private Sub ModifyList(lst As List(Of String))
    lst.Add("Hello")
End Sub


这篇关于将列表作为参数传递的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-12 13:15