Вы можете сделать это, используя расширение SOS Debugging! DumpStackObjects.
(Я использую WinDbg, но вы также можете загрузить расширение в VS из окна Immediate)
Эта команда выведет все объекты стека в следующем формате:
RSP/REG Object Name
000000000028ef70 0000000002823a98 System.Collections.Generic.List`1[[System.String, mscorlib]]
000000000028efa0 0000000002823a98 System.Collections.Generic.List`1[[System.String, mscorlib]]
000000000028efa8 0000000002823a68 System.String
000000000028efb0 0000000002823a68 System.String
000000000028efc0 0000000002823a98 System.Collections.Generic.List`1[[System.String, mscorlib]]
000000000028efc8 0000000002823a98 System.Collections.Generic.List`1[[System.String, mscorlib]]
000000000028efd0 0000000002823a98 System.Collections.Generic.List`1[[System.String, mscorlib]]
000000000028efd8 0000000002823a98 System.Collections.Generic.List`1[[System.String, mscorlib]]
000000000028efe0 0000000002823a98 System.Collections.Generic.List`1[[System.String, mscorlib]]
000000000028f000 0000000002823a48 System.Object[] (System.String[])
000000000028f188 0000000002823a48 System.Object[] (System.String[])
000000000028f370 0000000002823a48 System.Object[] (System.String[])
000000000028f398 0000000002823a48 System.Object[] (System.String[])
В этом примере вы можете видеть, что 7 местоположений стека указывают на одну и ту же ссылку на объект.