I have a csv file which may have empty or blank rows. I want to delete such rows but the problem is that the csv files can be potentially very large. So, I am looking for a way to do it without having to load it in memory.
The solution that works for me is using a DataTable or a StreamReader, but both of them will be using the memory which is not preferable.
Thanks in advance.