0

I have the class like:

Public Class Foo
    Public Item As String
    Public StorageLocation As String
    Public NewQuantity As Double
    Sub New(item As String, location As String, quantity As Double)
        Me.Item = item
        Me.Location = location
        Me.NewQuantity = quantity
    End Sub
End Class

and I want to have a generic list in which I could select unique objects with unique sets of Item & Location. Is this possible?

WeSt
  • 2,628
  • 5
  • 22
  • 37

0 Answers0