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

51,786 answers

573 users

How to return multiple values from function to tuple in C#

1 Answer

0 votes
using System;

class Program
{
    static (int min, int max) FindMinMax(int[] arr) {
        var min = int.MaxValue;
        var max = int.MinValue;
     
        foreach (var n in arr) {
            if (n < min) {
                min = n;
            }
            if (n > max) {
                max = n;
            }
        }
        return (min, max);
    }
    static void Main() {
        var arr = new[] { 8, 3, 45, 9, 7, 2 };
 
        var (minimum, maximum) = FindMinMax(arr);
 
        Console.WriteLine($"min = {minimum} max = {maximum}");
    }
}



 

 
 
 
 
/*
run:
 
min = 2 max = 45
 
*/

 



answered Nov 22, 2020 by avibootz
edited Feb 4, 2023 by avibootz

Related questions

1 answer 61 views
1 answer 153 views
3 answers 324 views
1 answer 103 views
1 answer 84 views
4 answers 110 views
...