Reputation: 3253
In WinDBG with SOS loaded you can see methods and their arguments via !dumpmt
, e.g.
!dumpmt -md 00007ffb1c0506f8
...
00007ffb1c529ae0 00007ffb1c1a4c38 PreJIT System.String.Concat(System.String, System.String)
00007ffb1c568910 00007ffb1c1a4c48 PreJIT System.String.Concat(System.String, System.String, System.String)
00007ffb1c566ab0 00007ffb1c1a4c58 PreJIT System.String.Concat(System.String, System.String, System.String, System.String)
...
Without opening ildasm
or ILspy
(or any other disassembler): how do you view the return types of methods (be it void
or an actual type)?
Upvotes: 1
Views: 87