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

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

IdGenerator in java

// IdGenerator

public class IdGenerator {
	
	private long maxId; 
	
	public IdGenerator(long start) {
		maxId = start;
	}
	
	public long getNextId () {
		return ++maxId;
	}

} // IdGenerator

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-2 of 2 total  RSS