Hands on question: Implement two methods on C#, reading a CSV file. A method which returns a line from the file A method which returns a cell
Sigiloso
string ReadLine(int line) string ReadCell(int line, string column) I used File library to read the CSV file.