If the input is numerical then run numPalindrome().
If the input is alphabetical then run strPalindrome().
static void Main(string[] args)
{
Console.Write("Enter your Input: ");
var input = Console.ReadLine();
if (What to do?????)
{
strPalindrome();
}
else
{
numPalindrome();
}
}
int.TryParse?