Created
October 27, 2022 09:32
-
-
Save jskeet/7a22d3ff204047fe1868ad8b9524823f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Imports System | |
Module Program | |
Sub Main(args As String()) | |
Dim upload As Dictionary(Of (Long, Long, Long), Long) = New Dictionary(Of (Long, Long, Long), Long) | |
upload.Add((1, 2, 3), 5) | |
End Sub | |
End Module |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can do
Dim upload = New Dictionary(Of (Long, Long, Long), Long)()
instead ofDim upload As Dictionary(Of (Long, Long, Long), Long) = New Dictionary(Of (Long, Long, Long), Long)