I have an Excel file that contains sensitive data that needs to be encoded before it's FTPd to it's final location but I'm not sure where to start. What I want to achieve is this:
- Open Excel file in C#
- Import data into DataSet/Reader
- Loop through each 'cell' and encode each value
- Create a new CSV file containing my encoded data
Opening the file and importing it into a dataset is easy enough (if having the data in a dataset is the correct way to do this) but I'm not sure how to loop through and encode each piece of information and then create a new file containing this.
Any ideas?
Thanks in advance, Brett