Good, I want to make a Pattern Regex to verify that in a chain there is the arroba character in the middle of two text strings in C #, the conventional:
if (Regex.IsMatch(email, "\@{1,1}")) {
//Codigo
}
In the previous code I tried to verify that the character was at least and maximum once in the chain, but I guess that \ @ is not the regex corrector to reference that character for a Regex.