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 select only unique values from a list in VB.NET

3 Answers

0 votes
Imports System
Imports System.Linq
Imports System.Collections.Generic

Public Class Program
    Public Shared Sub Main()
        Dim list As List(Of Integer) = New List(Of Integer) From {
            3,
            5,
            2,
            1,
            3,
            3,
            2,
            8,
            9,
            5
        }
		
        Dim unique As List(Of Integer) = list.Distinct().ToList()
		
        Console.WriteLine(String.Join(", ", unique))
    End Sub
End Class







' run:
'
' 3, 5, 2, 1, 8, 9
'

 



answered Jul 30, 2023 by avibootz
0 votes
Imports System
Imports System.Linq
Imports System.Collections.Generic

Public Class Program
    Public Shared Sub Main()
        Dim list As List(Of Integer) = New List(Of Integer) From {
            3,
            5,
            2,
            1,
            3,
            3,
            2,
            8,
            9,
            5
        }
		
        Dim unique As List(Of Integer) = New HashSet(Of Integer)(list).ToList()
		
        Console.WriteLine(String.Join(", ", unique))
    End Sub
End Class







' run:
'
' 3, 5, 2, 1, 8, 9
'

 



answered Jul 30, 2023 by avibootz
0 votes
Imports System
Imports System.Collections.Generic

Public Class Program
	Public Shared Sub Main()
        Dim list As List(Of Integer) = New List(Of Integer) From {
            3,
            5,
            2,
            1,
            3,
            3,
            2,
            8,
            9,
            5
        }
		
        Dim unique = New List(Of Integer)()

        For Each value In list
            If Not unique.Contains(value) Then
                unique.Add(value)
            End If
        Next

        Console.WriteLine(String.Join(", ", unique))
    End Sub
End Class








' run:
'
' 3, 5, 2, 1, 8, 9
'

 



answered Jul 30, 2023 by avibootz

Related questions

3 answers 148 views
1 answer 131 views
1 answer 114 views
1 answer 108 views
1 answer 140 views
2 answers 265 views
...