+ 1
Use the "Contains" function to check for @ and .com strings. You can also use this function to verify there is no whitespace.
var email = Console.ReadLine().Trim();
bool isValidEmail = false;
if (email.Contains("@") && email.Contains(".com") && !email.Contains(" "))
{
isValidEmail = true;
}