Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,855 questions

51,776 answers

573 users

How to return list from method in VB.NET

1 Answer

0 votes
Imports System
Imports System.Collections.Generic

Public Class Program
    Public Shared Function getList(ByVal str1 As String, ByVal str2 As String, ByVal str3 As String) As List(Of String)
        Dim lst As List(Of String) = New List(Of String)()
		
        lst.Add(str1)
        lst.Add(str2)
        lst.Add(str3)
		
        Return lst
    End Function

    Public Shared Sub Main()
        Dim result As List(Of String) = getList("c#", "vb.net", "java")
		
		Console.WriteLine(String.Join(" ", result))
    End Sub
End Class



' run:
'
' c# vb.net java
'

 



answered Jan 2, 2022 by avibootz

Related questions

1 answer 95 views
1 answer 182 views
1 answer 168 views
168 views asked Jan 7, 2022 by avibootz
1 answer 146 views
2 answers 245 views
...