Data Types C#

using System.Text.RegularExpressions;
namespace Common.Core
{
    public class Validator
    {
        public static bool IsNumeric(string strNumeral)
        {
            return new Regex(@"^([0-9])[0-9]*(\.\w*)?$").IsMatch(strNumeral);  //?????
        }
    }
}