Hi,

I want to read a comma delimited file, but sometimes the data is enclosed with double quote, sometimes not, so I can't just use the function split. I've looked around and found this class CommaDelimitedStringCollection in .NET framework (version 2.0). How can I use this class?
CommaDelimitedStringCollection myVar; didn't work, it just keeps saying that it cannot find the type or namespace (I've used System.Configuration, System.Collections, and System.Collections.Specialized).

Thanks in advance.