I have a map named AcesMap and consists of int keys and string values like
1 Aspirin
2 Coversyl
I know I can iterate over the map like this
How do I retrieve the key from the map?
regards, Ricky
1 Aspirin
2 Coversyl
I know I can iterate over the map like this
B4X:
For Each s As String In AcesMap.Values
If s=Value Then
'get the key but how?
Exit
End If
Next
How do I retrieve the key from the map?
regards, Ricky