Forum: VB.NET Jul 21st, 2009 |
| Replies: 11 Views: 343 C# combines good performance of C++, compact syntax of C and practically oriented approach of old VB. But be warned C# is still .NET language so forgot C style "when I say, what I say, exactly - no... |
Forum: VB.NET Jul 21st, 2009 |
| Replies: 3 Views: 1,085 public static bool IsValidEmailAddress(string sEmail)
{
if (sEmail == null)
return false;
else
return Regex.IsMatch(sEmail, @"... |