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,907 questions

51,839 answers

573 users

How to return list from method in C#

1 Answer

0 votes
using System;
using System.Collections.Generic;
   
class Program
{
    public static List<string> getList(string str1, string str2, string str3) {
        List<string> lst = new List<string>();
           
        lst.Add(str1);
        lst.Add(str2);
        lst.Add(str3);

        return lst;
    }
    static void Main() {
        List<string> result = getList("c#", "vb.net", "java");
   
        Console.WriteLine(string.Join(" ", result));
    }
}
   
   
   
   
/*
run:
   
c# vb.net java
   
*/

 



answered Jan 2, 2022 by avibootz

Related questions

1 answer 120 views
120 views asked Dec 13, 2020 by avibootz
1 answer 130 views
130 views asked Dec 12, 2020 by avibootz
1 answer 126 views
3 answers 327 views
1 answer 137 views
2 answers 191 views
1 answer 218 views
...