March 2010 - Posts

7
Comments

Tip 14 : Solve SmtpClient issues of delayed email and high CPU usage by StanleyGu

1. It is quite straightforward using SmtpClient class to send out an email 2. However, when you step through the above code executing smtpClient.Send(), you will notice about 2 minutes delay in receiving the email. 3. My first try to solve the issue of...
Filed under: ,
6
Comments

Tip 13 : Kill a process using C#, from local to remote by StanleyGu

1. My first choice is always to try System.Diagnostics to kill a process 2. The first choice works very well in killing local processes. I thought the first choice should work for killing remote process too because process.kill() method is overloaded...
Filed under: ,
More Posts