February 2005 - Posts
Server Performance Advisor http://www.microsoft.com/downloads/details.aspx?FamilyID=61a41d78-e4aa-47b9-901b-cf85da075a73&displaylang=en "Service Performance Advisor is a server performance diagnostic tool developed to diagnose root causes of performance
Read More...
Here's some code for reading through a StreamReader one line at a time until EOF (where line is a string and sr is a StreamReader): while (( line = sr.ReadLine()) != null ) { //your code here }
Read More...