IsNumeric function in c# May 4, 2023 by Tarik public bool IsNumeric(string value) { return value.All(char.IsNumber); }