Files
FileServices/Helper/PatulousMethods.cs

16 lines
323 B
C#
Raw Normal View History

2019-08-19 19:00:14 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
namespace System.Helper
{
public static class PatulousMethods
{
public static bool IsNumber(this string s)
{
return Regex.IsMatch(s, @"\d+");
}
}
}