Created
November 8, 2020 16:20
-
-
Save chrisnas/fc6772c92c856a51bfae91fd053bbe6c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class ClrMDHelper | |
| { | |
| private readonly ClrRuntime _clr; | |
| private readonly ClrHeap _heap; | |
| public ClrMDHelper(ServiceProvider provider) | |
| { | |
| _clr = provider.GetService<ClrRuntime>(); | |
| _heap = _clr.Heap; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment