Never been to CodeSnippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)

About this user

Andrew King

1 total

Simple Email Address Syntax Validation

// Basic email address syntax validation
// If the address is not formatted properly this will throw an error.

   System.Net.Mail.MailAddress temp = new System.Net.Mail.MailAddress(emailAddress);
1 total