Having a few issues in creating a variable called ‘dictionaryOrders’
Basically, I want to be able to call upon a value in ‘Address1’ and a value in ‘Address2’ column based on the keys which consist of two columns ‘PartNumber’ and 'OrderID
To get started on this, I’m trying to initialise a variable called dictionaryOrders with the variable type being:
System.Collections.Generic.Dictionary(Of System.Tuple(Of String, String), String)
But it’s just not working, the closest I can get is
System.Collections.Generic.Dictionary<System.Tuple, System.String>