Обновление IFORMFILE с использованием C # webapi - PullRequest
0 голосов
/ 18 апреля 2019
    I have an excel/csv file w with one column ID. Here i want to remove the duplicate ID elements from the file and update the same file by removing the duplicated record.

Также хотите создать новый файл с удаленными / дублированными данными, просто чтобы показать, что они удалены.Как я могу добиться этого с помощью C # webapi.

I am using IFormFile.
    var result = new StringBuilder();
    using (var reader = new StreamReader(iFormFile.OpenReadStream()))
    {
      while (reader.Peek() >= 0) //read till eof
       result.AppendLine(await reader.ReadLineAsync());
   }



 I have written code to read the file as mentioned below. Can anyone help me with removing the duplicated record and creating a new file.

    Here is the code i have written so far to read from file
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...