Skip to content

Instantly share code, notes, and snippets.

@chancancode
Created May 29, 2012 21:33
Show Gist options
  • Save chancancode/2830878 to your computer and use it in GitHub Desktop.
Save chancancode/2830878 to your computer and use it in GitHub Desktop.
Ruby time to .NET ticks
class Time
# See http://msdn.microsoft.com/en-us/library/system.datetime.ticks.aspx
TICKS_SINCE_EPOCH = Time.utc(0001,01,01).to_i * 10000000
def ticks
to_i * 10000000 + nsec / 100 - TICKS_SINCE_EPOCH
end
end
@jchannon
Copy link

Any improvements required for Ruby 2.5?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment