User Profile
Collapse
-
altight, thank you. i will look into the specs for these,thnx again:)... -
StreamReader sr = new StreamReader(Fi le.OpenRead(@"F :\src.txt"));
string fileContent = sr.ReadToEnd();
sr.Close();
StreamWriter writer = new StreamWriter(Fi le.Create(@"F:\ dest.txt"));
writer.Write(fi leContent);
writer.Close();
this is my code that simply reads from src.txt n writes that 2 dest.txt,now my prob is that i donno how to read values in chunks of...Leave a comment:
-
how to read,modify and write to the text file with numbers in it
hi,i need 2 write code in C#.Net to read a text file with text as
22.13
21.65
25.16
31.22
and so on, i need 2 read this text and then take mean of the 4 values and write that mean result in another file, so far i've only been able to read the whole text from one file and write it to another file,can anyone please help me solve my problem,i.e. how to read values in chunks of four,store them in an...
No activity results to display
Show More
Leave a comment: