How can I print the string value of all the System.String objects on the current thread’s clrstack?
Pseudo code for what I want to do:
foreach ($string in !dso -type System.String) !do $string
or better yet
foreach ($string in !dso -type System.String) !printstring $string
even better yet
foreach (distinct $string in !dso -type System.String) !printstring $string
Thanks!
The latest SOSEX extension (v4) has the
!mdsocommand which has the type filtering option/t.so a command of
!mdso /t:System.Stringshould work.