coming from .Net world, just want to know what is the corresponding collection to .Net Dictionary
Probably:
Map<String, String> map
If you want ordered keys:
map = new TreeMap<String, String>();
If you want O(1) ops instead of O(lg n):
map = new HashMap<String, String>();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With