Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Imports System.Collections.Generic
- Module VBModule
- Sub Main()
- Dim test As New Dictionary(Of Object, Object)
- test.Add(0, 23)
- test.Add(1, "hello")
- test.Add(15, 34.5)
- test.Add("mamma mia!", 42)
- Console.WriteLine(test.Item("mamma mia!") = 42)
- Console.WriteLine(test.Item(1) = "hello")
- End Sub
- End Module
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement