Pergunta de entrevista da empresa VITEC

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

Resposta da entrevista

Sigiloso

10 de jul. de 2022

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

1