VITEC Interview Question

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

Interview Answer

Anonymous

Jul 10, 2022

string ReadLine(int line) string ReadCell(int line, string column) I used File library to read the CSV file.

1