Skip to content

Instantly share code, notes, and snippets.

@amogram
Created April 15, 2013 16:02
Show Gist options
  • Save amogram/5389180 to your computer and use it in GitHub Desktop.
Save amogram/5389180 to your computer and use it in GitHub Desktop.
Quick and dirty Timestamp extension method.
public static class DateTimeExtensions
{
public static String GetTimestamp(this DateTime value)
{
return value.ToString("yyyyMMddHHmmssffff");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment