Common Expression Evaluator Features 

This topic describes various Expression Evaluator features that are common to the debugger, varying only by language.

Implicit Variables

In Visual Basic, C#, and Visual J#, you can create implicit variables using the expression evaluator. These implicit variables never go out of scope and can be treated as any other variable.

In C# and Visual J#, you can create an implicit variable by declaring it in the expression evaluator. For example, you can enter the following C# code in the Immediate window:

int b = 100;

When you execute this code in the Immediate window, the new implicit variable appears in the Locals window with the $ sign in front of the variable name, in this case, $b.

In Visual Basic, you cannot declare implicit variables in the expression evaluator, but if you use an undeclared variable in the Visual Basic expression evaluator, an implicit variable is created automatically. In Visual Basic, implicit variables are not listed in the Locals window.

Breakpoints

If you use the Immediate window to evaluate a Visual Basic, C#, or Visual J# method or function that contains a breakpoint, that breakpoint is hit and a new frame appears on the Call Stack. Here is a C# example:

    class Program
    {
        static void Main(string[] args)
        {
// Breakpoint here:
             int a = 20;
         }
    }

If you set a breakpoint where the comment indicates, compile and execute the program by pressing F5, you will hit the breakpoint in a normal manner. If you now evaluate the method Main by typing Program.Main(null) into the Immediate window, the breakpoint will be hit a second time, and there will be an entry for the method on the Call Stack.

Evaluating in the Watch Window

To avoid possible undesired side effects, a function or method call is not automatically evaluated every time the debugger steps. Instead, an icon enables you to manually update the result. It appears in the Value column, enabling you to evaluate the call manually. For more information, see Side Effects and Expressions.

Object Identity

This feature is not available for Visual Basic.

Some applications create many instances of a class. In these applications, it is often useful to have an identifier to distinguish a given instance of the class. This can be useful, for example, if a specific instance of the class is not behaving as expected or a specific instance has been inserted more than once into a collection that should only contain it once.

Native Object Identity

When debugging unmanaged code, you can uniquely identify an object by means of its address. This is important for two reasons:

  • You can track an object just by using its address. This includes the ability to use an address to:

    • View the value of the object at that address.

    • Check for equality. In many instances, the address for an object can be used in the same way as the object variable itself.

  • You can use the address of an object, the instance, to set a breakpoint on a method in that specific instance.

    For example, suppose you have an object that is an instance of class CMyType, with address 0xcccccccc. You can specify a function breakpoint on method aMethod of that instance as follows:

    ((CMyType *) 0xcccccccc)->aMethod

Managed Object Identity

With managed code, you cannot use an object's address to identify it. Instead, you use an integer known as the object ID generated by the common language runtime (CLR) debugging services and associated with the object. This number is a positive integer generated by the CLR debugging services. The object ID value has no significance except to uniquely identify the object.

Object handles are displayed as variable-length, decimal integers, with the pound sign (#) appended after the number, with no leading zeroes, such as 5#. Handles appear in the Value column in different debugger data windows.

To create an object ID for a variable, right-click on the variable, and select Create Object ID. The debugger will display a number with the pound (#) sign appended after it, such as 123#. To delete an object ID, right-click the variable, and select Remove Object ID.

When a breakpoint is hit, you can type a variable's handle into the Watch window. The debugger displays the value of the object ID, and you can expand and inspect it just like any other variable.

You can use the object ID to set a breakpoint on a method of the object. For example, suppose you have an object, an instance, of class CMyType that has object ID 5#. Class CMyType includes a method aMethod. You can set a function breakpoint on method aMethod of instance 5# as follows:

((CMyType) 5#).aMethod

See Also

Concepts

Viewing Data in the Debugger

Other Resources

Expressions in the Debugger
Debugger Roadmap