Following is the format of the data stored in my arraylist.
A-Amsterdam
B- Brussels
C-Canada
so and so forth.
I wan to search my array list by passing just the first few characters till ‘-‘
So if i have something like AA-Test then i want to pass just ‘AA’ to check if it exists or not.
I know that i can use contains or binarysearch but it does not serve my purpose as they both compare objects.
Any suggestions??
thanks
You can solve this by creating your own IComparer and passing it into BinarySearch:
Later…