Skip to content

Instantly share code, notes, and snippets.

@fabiomaulo
Created May 10, 2010 14:46
Show Gist options
  • Save fabiomaulo/396117 to your computer and use it in GitHub Desktop.
Save fabiomaulo/396117 to your computer and use it in GitHub Desktop.
Workaround for TableStorage DateTime precision (under MS-PL)
public static class DateTimeExtensions
{
public static DateTime RoundMilliseconds(this DateTime source)
{
return source.AddTicks(-(source.Ticks % (TimeSpan.TicksPerMillisecond * 10L)));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment