Visual Studio 2015 Debugger Corruption - ¿Es un error o solo yo?

¿Me he vuelto loco? Siempre he podido confiar en el depurador, ¿verdad?

Resulta que durante una sesión de depuración con VS2015, cuando, por ejemplo, cambio el valor de una variable en la Ventana Inmediata, esa asignación da como resultado que se asigne un valor "basura". Es el mismo valor de basura cada vez, pero no obstante está completamente equivocado.

He resumido esto en la reproducción de la aplicación de consola más simple, y en caso de que pienses que estás de acuerdo con mi autoevaluación de la locura, también hice un video de captura de pantalla que salió mal.

¿Ustedes también están teniendo este problema o es un problema de máquina local?

Aquí están los enlaces de una unidad para:

Video Clip de reproCódigo fuente para repro (muy pequeño - código de clase principal a continuación)

PD: estoy ejecutando Windows 10 Enterprise x64, VS2015 Enterprise con todas las actualizaciones actuales para OS y VS aplicadas. El hardware subyacente es un hardware moderno con el que no he tenido problemas bajo VS2013.

internal class Program
{
    private static DateTime? _nullableDateTime;

    private static void Main( string[] args )
    {
        // Use the debugger to step through this repro. 
        // * Not sure if it matters, but I started with F11 right from the         start without any breakpoints.
        // ==============================================================================================

        // 1. Variable starts off with default of null
        //    The following statement will confirm that with an "empty" value in the console window
        Console.WriteLine( _nullableDateTime );

        // 2. The next statement assigns the current date and time
        _nullableDateTime = DateTime.Now;

        // 3. The following statement will confirm the correct value in the console window
        Console.WriteLine( _nullableDateTime );

        // 4. THIS IS WHERE THE TROUBLE STARTS
        //    Now, using the immediate window, change the value of the variable with the 
        //    following statement (after the colon) : _nullableDateTime = DateTime.Now
        //    
        //  
        //

        // 5. After changing the value via the immediate window, let's look at it's value now.
        //    For me (as can be seen in the video), I get the completely wrong value in the console window.
        Console.WriteLine( _nullableDateTime );
    }
}

Comenzaré a armar lo mismo para un problema de VS Connect.

EDITAR: Estoy empezando a preguntarme si esto es un problema solo para mí, ya que nadie ha confirmado que esto también les esté sucediendo a ellos.

EDITAR: se ha archivado el problema de conexiónaquí.

Respuestas a la pregunta(2)

Su respuesta a la pregunta