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 array from method in C#

1 Answer

0 votes
using System;

class Program
{
    static int[] NaturalNumber(int size) {
        int[] arr = new int[size];
        
        for (int i = 0; i < arr.Length; i++) {
            arr[i] = (i + 1) * 3; 
        }
        return arr;
    }

    static void Display(int[] arr) {
        foreach (int n in arr)
            Console.Write($"{n}\t");
    }
    
    static void Main() {
        int[] arr = NaturalNumber(5);

        Display(arr);
    }
}



/*
run:

3	6	9	12	15		

*/

 



answered Dec 12, 2020 by avibootz

Related questions

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