Regular Expressions C#

//Microsoft Public License (Ms-PL)
//http://c4fdevkit.codeplex.com/license
using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
namespace C4F.DevKit.WebServices
{
    /// 
    /// Provides useful methods like conversion methods.
    /// 

    public static class Utility
    {
        /// 
        /// Validates the area code
        /// 

        /// Area code to be validated. Area code should not start with a 0 or a 1.
        /// True, if area code is valid
        public static bool ValidateAreaCode(string areaCode)
        {
            if (String.IsNullOrEmpty(areaCode))
                return false;
            return Regex.IsMatch(areaCode, "^[^01][0-9]{2}$");
        }
    }
}