read from csv file
hi
i want to read from csv file, that file write with another program and i must read data in files in my program! i try it...
FileStream FS = newFileStream(strFileName, FileMode.Open, FileAccess.Read, FileShare.Read);
StreamReader SR = newStreamReader(FS, Encoding.Default);
string AllText = SR.ReadToEnd();
error :
used by another procsess...
plz help me
|