Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

x64 build static variable doesn't initialize while debugged in VS


Summary

In Visual Studio 2010 SP1, if we build the application in the x64/Any CPU mode, we see that the static variable initialization does not happen under the debug mode.

If we create a console application using the following code snippet and putting the break point on the "private static bool publishEvent = true", we see the value of the static variable does not change, while stepping into the code. The value of the static variable remains uninitialized, in this case, false.

The expected behavior is, the value of publishEvent becomes true.


class Test
    {
        private static bool publishEvent = true;
       
        public Test()
        {
            Console.WriteLine("{0}", publishEvent);
        }
    }
    class Program
    {
        static void Main(string[] args)
        {
           Test varT = new Test();
           Console.ReadLine();
        }
    }

↑ Back to the top


More Information

This behavior of Visual Studio 2010 SP1 is a known issue. This issue is fixed in the next release of Visual Studio versions. However there are some easy workarunds available as mentioned below:
  • Put a break point on some other location, rather than the static variable declaration itself.
  • Put a [ThreadStatic] attribute before declaring the static variable.
  • Install .NET 4.5 Framework. You do not have to target 4.5 framework but just install it.

↑ Back to the top


Keywords: kb

↑ Back to the top

Article Info
Article ID : 2799612
Revision : 1
Created on : 1/7/2017
Published on : 1/16/2013
Exists online : False
Views : 60