As I'm a beginner in c# I need help !!! . I have a .csv file containing Students details in following columns, All I need here is based on the highest marks scored by the individuals , I need to get the output as follows: (/* The data's in csv file are, say may be 100 in each row and column cell */)
Name ,Maths,Science,English(header of csv)
Akash, 80, 67 , 54
Manoj, 64, 56 , 72
Subas, 78, 84 , 63
I can do the read operation and displayed the whole line. But my problem is I want to display the Name of the student and subject from the highest score from each subject.
Sample Output:
English- Manoj
Maths - Subas
Science- Akash
I'm stuck in middle and any answers without using VB are highly appreciated.