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 in C#

3 Answers

0 votes
using System;
using System.Collections.Generic;

public class Program
{
	public static void Main(string[] args)
	{
		ISet<string> set = new HashSet<string> {"c#", "vb.net", "c", "c++", "python"};

        Console.WriteLine(string.Join(" ", set));	
	}
}




/*
run:
  
c# vb.net c c++ python
  
*/

 



answered Jul 16, 2022 by avibootz
0 votes
using System;
using System.Collections.Generic;
 
public class Program
{
    public static void Main(string[] args)
    {
        HashSet<int> set = new HashSet<int>() { 1, 2, 3, 8, 0, 7 };
 
        Console.WriteLine(string.Join(" ", set));   
    }
}
 
 
 
 
/*
run:

1 2 3 8 0 7
   
*/

 



answered Oct 1, 2022 by avibootz
0 votes
using System;
using System.Collections.Generic;
 
public class Program
{
    public static void Main(string[] args)
    {
        HashSet<int> set = new HashSet<int>();
        
        set.Add(1);
        set.Add(2);
        set.Add(3);
        set.Add(0);
        set.Add(9);
        set.Add(7);
 
        Console.WriteLine(string.Join(" ", set));   
    }
}
 
 
 
 
/*
run:

1 2 3 0 9 7
   
*/

 



answered Oct 1, 2022 by avibootz

Related questions

1 answer 99 views
1 answer 84 views
1 answer 83 views
83 views asked Oct 1, 2022 by avibootz
1 answer 53 views
1 answer 124 views
...