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

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,104 questions

40,777 answers

573 users

How to add array of integers to a dictionary in VB.NET

1 Answer

0 votes
Imports System
Imports System.Collections.Generic
                 
Public Module Module1
	Public Sub printOnceKey(arr() As Integer) 
		Dim dict As Dictionary(Of Integer, Integer) = New Dictionary(Of Integer, Integer)
		
		For i As Integer = 0 To arr.Length - 1
			dict.Add(arr(i), i) 
		Next
	For Each element As KeyValuePair(Of Integer, Integer) In dict
            Console.WriteLine("{0} : {1}", element.Key, element.Value)
        Next
	End Sub
    Public Sub Main()
        Dim arr() As Integer = {12, 11, 18, 19, 30, 60}
  
        printOnceKey(arr)
    End Sub
End Module
     
     
     
' run:
'
' 12 : 0
' 11 : 1
' 18 : 2
' 19 : 3
' 30 : 4
' 60 : 5
'

 





answered May 4, 2020 by avibootz
...