Skip to content

Instantly share code, notes, and snippets.

@Criteo-dotnet-blog
Created May 29, 2017 11:00
Show Gist options
  • Save Criteo-dotnet-blog/23ed5f729db00075d974ae35d2d7e33f to your computer and use it in GitHub Desktop.
Save Criteo-dotnet-blog/23ed5f729db00075d974ae35d2d7e33f to your computer and use it in GitHub Desktop.
var val = GetFieldValue(heap, currentTimerQueueTimerRef, "m_dueTime");
ti.DueTime = (uint)val;
val = GetFieldValue(heap, currentTimerQueueTimerRef, "m_period");
ti.Period = (uint)val;
val = GetFieldValue(heap, currentTimerQueueTimerRef, "m_canceled");
ti.Cancelled = (bool)val;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment