public static void Main()
string[] test = { "One", "r", "e", "Four", "e" };
bool foundNumeric = false;
Action<string> IsNumeric = (v) =>
foundNumeric = Int32.TryParse(v, out num);
foreach(string i in test)
Console.WriteLine("Number found:" + foundNumeric);