Sams Teach Yourself Visual C# 2010 in 24 Hours at TechEd 2010

  • 1 minute to read
We are still ironing out some contract issues with Microsoft legal to include the Express Edition DVD with the book, but in the meantime there will be about 9 galley copies of the book which Sams will be giving away during TechEd 2010. If you’re going, be sure to stop... Read more

Retrieving Custom Attributes Using Reflection

  • 3 minutes to read
The .NET Framework allows you to easily add metadata to your classes by using attributes. These attributes can be ones that the .NET Framework already provides, of which there are over 300, or you can create your own. Using reflection, the ways to retrieve the custom attributes of a type... Read more

CLR 4.0: Corrupted State Exceptions

  • 2 minutes to read
Corrupted state exceptions are designed to help you have fewer bugs in your code by making it harder to make common mistakes around exception handling. A very common pattern is code like this: public void FileSave(String name) {... Read more

Favorite Visual Studio 2010 Extensions

  • 1 minute to read
Now that Visual Studio 2010 has been released, there are a lot of extensions being written. In fact, as of today (May 1, 2010 at 15:40 UTC) there are 809 results for Visual Studio 2010 in the Visual Studio Gallery. If you filter this list to show just the... Read more