Am I missing something or does System.IO.FileStream not read Unicode text files containing Hebrew?
    public TextReader CSVReader(Stream s, Encoding enc) 
    {
        this.stream = s;
        if (!s.CanRead) 
        {
            throw new CSVReaderException("Could not read the given CSV stream!");
        }
        reader = (enc != null) ? new StreamReader(s, enc) : new StreamReader(s);
    }
Thanks Jonathan
 
     
     
     
     
    