Click here to Skip to main content
15,886,689 members
Articles / Web Development / ASP.NET

“Cannot Evaluate Expression Because the Code of the Current Method is Optimized”

Rate me:
Please Sign up or sign in to vote.
5.00/5 (6 votes)
28 Jan 2013CPOL3 min read 69.1K   3  
Possible solutions to the problem

Problem Description

This is one of the common errors faced by a lot of Visual Studio users. Typically, they get the below error message during debugging:

“Cannot evaluate expression because the code of the current method is optimized.”

Assessment

In .NET, “Function Evaluation (funceval)” is the ability of CLR to inject some arbitrary call while the debuggee is stopped somewhere. Funceval takes charge of the debugger’s chosen thread to execute requested method. Once funceval finishes, it fires a debug event. Technically, CLR has defined ways for debugger to issue a funceval.

CLR allows to initiate funceval only on those threads that are at GC safe point (i.e., when the thread will not block GC) and Funceval Safe (FESafe) point (i.e., where CLR can actually do the hijack for the funceval) together. Thus, possible scenarios for CLR, a thread must be:

  1. stopped in managed code (and at a GC safe point): This implies that we cannot do a funceval in native code. Since native code is outside the CLR’s control, it is unable to setup the funceval.
  2. stopped at a 1st chance or unhandled managed exception (and at a GC safe point): i.e., at time of exception, to inspect as much as possible to determine why that exception occurred (e.g.: debugger may try to evaluate and see the Message property on raised exception.)

Overall, common ways to stop in managed code include stopping at a breakpoint, step, Debugger.Break call, intercepting an exception, or at a thread start. This helps in evaluating the method and expressions.

Reference: MSDN Blog: Rules of Funceval

Possible Resolutions

Based on the assessment, if thread is not at a FESafe and GCSafe points, CLR will not be able to hijack the thread to initiate funceval. Generally, following helps to make sure funceval initiates when expected.

Step #1

Make sure that you are not trying to debug a “Release” build. Release is fully optimized and thus will lead to the error in discussion. By using the Standard toolbar or the Configuration Manager, you can switch between Debug & Release.

For more details about it: How to: Set Debug and Release Configurations

Step #2

If you still get the error, Debug option might be set for optimization. Verify & uncheck the “Optimize code” property under Project “Properties”:

  • Right click the Project
  • Select option “Properties
  • Go to “Build” tab
  • Uncheck the checkbox “Optimize code”

Step #3

If you still get the error, Debug Info mode might be incorrect. Verify & set it to “full” under “Advanced Build Settings”:

  • Right click the Project
  • Select option “Properties
  • Go to “Build” tab
  • Click “Advanced” button
  • Set “Debug Info” as “full”

Step #4

If you still face the issue, try the following:

  • Do a “Clean” & then a “Rebuild” of your solution file
  • While debugging:
    1. Go to modules window (VS Menu -> Debug -> Windows -> Modules)
    2. Find your assembly in the list of loaded modules.
    3. Check the Path listed against the loaded assembly is what you expect it to be
    4. Check the modified Timestamp of the file to confirm that the assembly was actually rebuilt
    5. Check whether or not the loaded module is optimized or not
  • Remote chance could be that your call stack is getting optimized because your method signature is too large (more than 256 argument bytes). Read more about it at this MSDN blog.

Conclusion

It’s not an error, but an information based on certain settings and as designed based on how .NET runtime works.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect Intuit India
India India


A software professional for more than 17+ years building solutions for Web and Desktop applications.

Currently working at Intuit India.

Website: Learn By Insight
Github: Sandeep Mewara
LinkedIn: Sandeep Mewara

Strongly believe in learning and sharing knowledge.



Comments and Discussions

 
-- There are no messages in this forum --