Read CSV?

Are there any plans to be able to read in a CSV file?

<?xml:namespace prefix = o ns = "urnTongue Tiedchemas-microsoft-comSurprisefficeSurpriseffice" /><oStick out tongue> </oStick out tongue>

Thanks.

We plan to add this feature to Aspose.Excel before the end of this year.

Any chance of getting this sooner?
thanks

Could you tell me your expected date? Then I can see if I can change my plan to meet your need.

Before the end of October would be nice. thanks.

I think before the end of November is more feasible. However, we will do our best to implement this feature ASAP.

Now this feature is available in V2.5. Please download it at

You can use Excel.OpenCSV method to open a CSV file.

@win_vm,
Aspose.Cells has replaced Aspose.Excel which is no more continued now. This new product supports all the features available in Aspose.Excel along with the latest features available in different versions of MS Excel. Aspose.Cells contains rich features to read CSV files as demonstrated in the following sample code:

string filePath = dataDir + "Book11.csv";

// Instantiate Text File's LoadOptions
TxtLoadOptions txtLoadOptions = new TxtLoadOptions();

// Specify the separator
txtLoadOptions.Separator = Convert.ToChar(",");

// Specify the encoding type
txtLoadOptions.Encoding = System.Text.Encoding.UTF8;

// Create a Workbook object and opening the file from its path
Workbook wb = new Workbook(filePath, txtLoadOptions);

// Save file
wb.Save(dataDir+ "output.txt");

You may visit the following article for more details about setting chart appearance:
Opening CSV Files

Download the latest trial version here which can be used for testing:
Aspose.Cells for .NET (Latest Version)

Here is a ready to run solution which can be used to test the product features with minimal effort.