v C# nedelam, ale co pouzit reg. vyraz?

static bool IsNumeric(string inputString)
{
return Regex.IsMatch(inputString, "^[0-9]+$");
}