Skip to content

Instantly share code, notes, and snippets.

@agazso
Created September 10, 2011 11:55
Show Gist options
  • Save agazso/1208227 to your computer and use it in GitHub Desktop.
Save agazso/1208227 to your computer and use it in GitHub Desktop.
Helper function for creating lexicographically ordered ids
/// <summary>
/// Helper function for creating lexicographically ordered ids
/// </summary>
public static string Id(Int64 num)
{
return String.Format("{0:0000000000000}", num);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment