i have this Visual Basic .NET ArrayList
Dim first As New ArrayList()
first.Add({100, 200})
first.Add({500, 250})
first.Add({700, 200})
My question is, how i can get True from this code...
first.Contains({500, 250})
Always return me False... what is the correct syntax?