You can do it by using the SOS Debugging extension's !DumpStackObjects command.
(I am using WinDbg but you can also load the extension into VS from the Immediate window)
This command will dump all the stack objects in the following format:
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[])
In this example you can see that 7 stack locations are pointing to the same object reference.