Houston, we have a TechFest!

The Houston .NET Users Group (HDNUG) is organizing a day of technological banter at the University of Houston next month. The event has been coined the Houston TechFest and it is going to be held on August 25th (a Saturday).
This knowledge sharing experience is of particular interest to me because it will be my [...]

Missing ConfigurationManager in WinForms

For anyone who switches back and forth between developing ASP.NET WebForms and WinForms, this tip may come in handy.
If you are developing in a C# WinForms project, you will find that attempting to use a ConfigurationManager to get at your app.config settings will result in the following error:
The name ‘ConfigurationManager’ does not exist in the [...]

Do Not Use the StringBuilder

I know there are plenty of people out there that will disagree with me, but I urge you to not use the .NET StringBuilder class in 99% of the cases you would be tempted or recommended to do so.  Here is why:
 The StringBuilder class does perform better than basic string concatenation.  However, it is really [...]