if string has numbers c# code example
Example 1: if string contains number c#
"abc3def".Any(c => char.IsDigit(c));
// Or to make it shorter:
"abc3def".Any(char.IsDigit);
Example 2: c# check if string is all numbers
if (str.All(char.IsDigit)) {
// String only contains numbers
}