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

51,870 answers

573 users

How to swap two values of an array in C#

1 Answer

0 votes
using System;

class Program
{
	static void Swap<T> (ref T a, ref T b) {
        T temp = a;
        a = b;
        b = temp;
    }

    static void Main() {
        int[] arr = new int[] {99, 3, 7, 0, 2, 1, 8, 6};

		Swap(ref arr[0], ref arr[4]);

		for (int i = 0; i < arr.Length; i++) {
			Console.Write(arr[i] + " ");
		}
    }
}





/*
run:
  
2 3 7 0 99 1 8 6 
  
*/

 



answered Apr 19, 2023 by avibootz

Related questions

1 answer 130 views
130 views asked Apr 20, 2023 by avibootz
1 answer 109 views
1 answer 112 views
1 answer 99 views
1 answer 103 views
103 views asked Apr 20, 2023 by avibootz
1 answer 99 views
1 answer 94 views
94 views asked Apr 19, 2023 by avibootz
...