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.

40,026 questions

51,982 answers

573 users

How to initialize a set with int array in C#

1 Answer

0 votes
using System;
using System.Collections.Generic;
  
public class Program
{
    public static void Main(string[] args)
    {
        int[] arr = { 14, 0, 8, 12, 9, 3, 7, 6 };
        
        HashSet<int> set = new HashSet<int>();
        
        foreach (int item in arr) {
             set.Add(item);
        }
        
        Console.WriteLine(string.Join(" ", set));   
    }
}
  
  
  
  
/*
run:
 
14 0 8 12 9 3 7 6
    
*/

 



answered Oct 1, 2022 by avibootz

Related questions

2 answers 130 views
1 answer 110 views
5 answers 311 views
311 views asked Mar 3, 2017 by avibootz
1 answer 82 views
82 views asked Oct 1, 2022 by avibootz
1 answer 99 views
3 answers 154 views
154 views asked Jul 16, 2022 by avibootz
...