Visual Studio 2012 Strange Signal Icon

I have a class in a VS 2012 project whose signal icon is a black diamond (image below).

Unknown Signal Icon - Black Diamond

I am not familiar with this icon and it is not listed in the VS 2012 Class View and Object Browser Icons page on msdn page. Does anyone know what this icon means?

At first I had some problems with incorrect class resolution and build error date which I resolved ... I originally assumed it was some kind of error signal, however the icon remained after I got a successful build of the project.

I am also using JetBrains ReSharper 7.1 C # Edition Build 7.1.25.234 at 2012-11-14T00: 34: 00, but I cannot find any injected icon on their website.

+3


source to share


1 answer


The black diamond icon means it is a static class (the next screen shows a static class System.Linq.Enumerable

).

Btw, ... the icon with the "A" symbol means that this is an abstract class.



Enumerable code completion (IntelliSense)

+2


source







All Articles