6 Dec 2010
Updated: 19 Dec 2010
Rating: 3.73/5
Votes: 3
Popularity: 1.78
Licence: CPOL
Views: 17,120
Bookmarked: 2
Downloaded: 0
Unless I'm misreading your code on CodePlex, it looks like your utility loads in the entire file every time it changes. That might be fine for tiny files, but it would be a huge performance hit for larger ones (a few megs, for example).Why not do it a bit more simply?using (FileStream str...
|