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

51,825 answers

573 users

How to initialize a HashSet from an array in C#

2 Answers

0 votes
using System;
using System.Collections.Generic;
 
class Program
{
    public static void addToSet(int[] arr, HashSet<int> hset) {
        for (int i = 0; i < arr.Length; i++) {
            hset.Add(arr[i]);
        }
      
    }
    static void Main() {
        int[] arr = {1, 5, 7, 3, 9, 8, 0, 2};
        
        HashSet<int> hset = new HashSet<int>();
 
        addToSet(arr, hset);
        
        foreach (var item in hset) {
           Console.Write(item + " ");
        }
    }
}
 
 
 
 
/*
run:
             
1 5 7 3 9 8 0 2 
             
*/

 



answered Dec 6, 2021 by avibootz
edited Dec 6, 2021 by avibootz
0 votes
using System;
using System.Collections.Generic;

class Program
{
    static void Main() {
        int[] arr = {4, 6, 12, 3, 100, 99, 7, 0, 1};
        
        var hashset = new HashSet<int>(arr);

        foreach (var item in hashset) {
           Console.Write(item + " ");
        }
    }
}





/*
run:

4 6 12 3 100 99 7 0 1 

*/

 



answered Dec 6, 2021 by avibootz

Related questions

1 answer 125 views
125 views asked Jul 18, 2022 by avibootz
1 answer 113 views
2 answers 217 views
2 answers 224 views
224 views asked Oct 28, 2019 by avibootz
1 answer 136 views
1 answer 106 views
106 views asked Feb 7, 2024 by avibootz
...