I would like to know what the easiest and shortest LINQ query is to return true if a string contains any number character in it.
How about this:
bool test = System.Text.RegularExpressions.Regex.IsMatch(test, @"\d");