Edit & Continue and Make Object ID Improvements in CTP 6

VBTeam

It’s the beginning of a new year! According to Back to the Future Part II, everyone will be riding hoverboards in a couple months (and, let’s be honest, Doc would love the HoloLens). In the meantime, let’s explore the enhancements we’ve made to the Visual Studio debugging experience. In CTP 6, we improved the edits supported by Edit & Continue and now support Make Object ID in the new 2015 VB and C# expression evaluators.

Before you read more about our improvements in CTP 6, make sure you have read Anthony’s post on debugging improvements in Visual Studio 2015 Preview.

Edit & Continue is reaching its potential.

Hoverboards

Edit & Continue lets you modify and add to your source code while debugging without ever having to restart your session. I’m happy to say we listened to you all and have fleshed out the Edit & Continue experience. Say goodbye to the days of pre-2005 language support and small edits! See the list below to see what source code edits are possible while debugging*:

  • Adding methods, fields, constructors, properties, events, field and property initializers, and nested and top-level types (including delegates, enums, interfaces, abstract (MustInherit) and generic types)
  • Modifying bodies of constructors and field and property initializers
  • Adding and modifying methods that use the following post-2005 types and features:
  • Reordering type members and type parameter constraints
  • Refactoring code (extract method and inline temporary variable) using Ctrl + .
  • Example of inlining a variable while debugging

*The following types of edits are not supported:

  • Adding new abstract (MustOverride) members or making existing members abstract
  • Modifying an expanded property to an auto property, and vice versa
  • Modifying method signatures and renaming
  • Modifying generics, interfaces, and abstract (MustInherit) types
  • Adding or modifying enum members to an existing enum
  • Modifying Await expressions wrapped inside other expressions (e.g., G(Await F()))

Object IDs are a hidden gem and we’ve modified the syntax.

Object IDs

Did you know you can tag an object in the debugger and refer to it later using Make Object ID (even when the object is out of scope)? Did you know you could compare references of objects and verify that they refer to the same object with an Object ID tag? While Object IDs have been around for several years, few know and take advantage of this feature.

An Object ID is a unique identifier for an object that you can get from the debugger to keep track of an object in memory throughout you debugging session across different scopes, stack frames, and threads. You can also use the Object ID when debugging to compare references of objects and be absolutely certain they refer to the same object.

Below, I am stopped at a breakpoint on line 13. I have created a Watch for Circle a and made an Object ID for it ($1). Now if I step into the initialization of Circle b, putting Circle a out of scope, I can still inspect the value of Circle a via its Object ID:

Object IDs track objects even when they are out of scope

Another change to note is that we’ve changed the Object ID syntax for both Visual Basic and C#. It is now a dollar-sign ($) followed by a numeric for both languages (e.g., $1). The previous syntax for Object IDs was ObjID[number] for Visual Basic (e.g., ObjID1) and [number]# for C# (e.g., 1#). We chose to alter the Object ID syntax for the following reasons:

  • The new syntax will allow us to provide a better IntelliSense experience by showing defined Object IDs in the completion list after typing the “$” prefix character (planned for RTM)
  • The new syntax is now consistent with other pseudo-variables, (e.g. $exception, $ReturnValue)

Try out all these new features in Visual Studio 2015 CTP 6. Let us know what you think using Visual Studio’s Send a Smile feature! And don’t forget to log issues on our GitHub.

Over ‘n’ out
Kasey Uhlenhuth, Program Manager, Managed Languages Team

0 comments

Leave a comment

Feedback usabilla icon