(* over .NET Framework 3.5)
ref url. http://weblogs.asp.net/scottgu/archive/2007/03/13/new-orcas-language-feature-extension-methods.aspx
this 키워드를 통해 기존에 존재하는 Object의 Static 메소드를 추가한 것 처럼 만들 수 있다.
public static class ScottGuExtensions
{
public static bool IsValidEmailAddress(this string s)
{
Regex regex = new Regex(@"^[\w-\.]+@([\w-]+\.)+[\w-]{2,4}$");
return regex.IsMatch(s);
}
}
스캇 구슬희 형님의 VS에서 인텔리센스 되는 모습..

'Development > .NET' 카테고리의 다른 글
| C# - Diroctory Copy (Recursive method) (0) | 2011.03.29 |
|---|---|
| Q&A - Send a None exist email with SmtpClient(C#) (0) | 2011.03.27 |
| All-in-one code Framework (0) | 2010.11.26 |
| IE Plugin Development (0) | 2010.11.01 |
| Last.fm API and Facebook API for .NET (0) | 2010.11.01 |