Reputation: 16761
I was debugging C# in Visual Studio 2017, and debugger stopped on an exception. Some static members can't initialize, and exception is raised in member's class constructor. In Auto window I saw this icon that I have never seen before:
Blue box stands for class member. What does squared number one stand for?
I went through the Visual Studio Image Library 2017, a pdf file within a zip file, but couldn't find this one.
Upvotes: 0
Views: 110
Reputation: 17248
That means "static member field". The "1" apparently means "has only one instance".
Upvotes: 1