Best and Easy way to Convert CSV File to Excel File Using C#
The best and easiest way to convert csv file to excel file is here. This is the method I implemented and it is working fine. Hope you all implement it. private void Convert_CSV_To_Excel(string filename) { // Rename .csv To .xls System.IO.File.Move( filename , filename .Replace(“.csv”, “.xls”)); var _app = new MX.Application(); var _workbooks = _app.Workbooks;… Read More »