Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Linqpad library to work with .Net memory directly #10

Open
sidristij opened this issue Jun 23, 2014 · 0 comments
Open

Linqpad library to work with .Net memory directly #10

sidristij opened this issue Jun 23, 2014 · 0 comments
Assignees

Comments

@sidristij
Copy link
Owner

Sample 1

var app = (select proc from Processes where proc.IsNetApp).First;

var threads = select obj from app.MakeObjectsDump() where obj.FullName == "System.Threading.Thread";

threads.Show();

Sample 2

  var dump = Attached.TakeDump();


  // after some use
  var dump2 = Attached.TakeDump();
  MakeObjectsDiff(dump2, dump).ShowShort();

  // produces
  Dumps difference:
  18,291 objects total
  120 objects added
  12 killed
  43 have changes
@sidristij sidristij self-assigned this Jun 23, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant