How do I verify that a string is in English?
Assuming that by “English characters” you are simply referring to the 26-character Latin alphabet, this would be an area where I would use regular expressions: ^[a-zA-Z0-9 ]*$ For example: if( Regex.IsMatch(Console.ReadLine(), “^[a-zA-Z0-9]*$”) ) { /* your code */ } The benefit of regular expressions in this case is that all you really care about is … Read more