Friday, January 26, 2007

C# 3.0: An Introduction

This article hopes to bring readers up to speed on some of the changes we can look forward to in the C# 3.0 specification. Some of the new features include:

  • Object Initialization
  • Type Inferences
  • Anonymous Types
  • Lambda Expressions
  • Extension Methods
  • Queries (LINQ)
  • Expression Trees

Thursday, January 25, 2007

SQL Injection Attacks by Example

Are your applications susceptible to SQL injection attacks? I recently stumbled on a decent article that hopes to educate readers by demonstrating sample SQL injection techniques. A recommended read for any SQL developers.

Thursday, January 18, 2007

Search Engine Optimization for Beginners and Experts

Scott Bowler has written a great blog article detailing how to "achieve consistent results in the major search engines." I have found his blog post to be extremely useful and recommend it to others to read.

Wednesday, January 17, 2007

Custom Iterators

Bill Wagner has written a great article on custom iterators that I highly recommend reading. He takes you through a series of problems in great detail to help explain better ways of iterating through collections. A Word document version of the article is also available here and his blog can be found here.