I have a csv file named file.csv which contains data as follow
Id Name Address Contact
1 Peter USA 12345
2 Anna UK 45678
3 John USA 9876
I want to search for the Name using c# and return the value from the Address. For eg. If the user searc for Peter then, USA should be returned.
Can anyone give me some idea?