Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

hjnntaao

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

c# IsNumeric method

From Subtext source code - http://subtextproject.com/

public static bool IsNumeric(string text)
{
    return Regex.IsMatch(text,"^\\d+$");
}
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS