I\'m using A Fast CSV Reader to parse some pasted text into a webpage. The Fast CSV reader requires a TextReader object, and all I have is a string. What\'s the best way to
Use System.IO.StringReader :
using(TextReader sr = new StringReader(yourstring)) { DoSomethingWithATextReader(sr); }