I wanted to step through and study MS implementation of data structures in System.Collections.Generic
. Setted-up Visual Studio 2015 debugger to options you see below.
First issue: while trying to step into LinkedList<int> list = new LinkedList<int>();
debugger steps over LinkedList
constructor. This particular constructor is empty. Is this a default behavior of VS debugger to step over empty constructors ?
Second issue: debugger steps over internal LinkedListNode(LinkedList<T> list, T value)
constructor, instead of stepping in.
How do I force debugger to step into constructors ?