When compiling the following program in VS2010, VS2008 or MonoDevelop on Windows, I get warning CS0219, "The variable 'y' is assigned but its value is never used".
namespace Problem
{
public class Program
{
private static void Main(string[] args)
{
object x = new object();
int y = 0;
}
}
}
Why is there no warning for x
when compiling in Visual Studio?
Interestingly, I do get CS0219 warnings for x
and y
when compiling in MonoDevelop on Mac OS X.
I could be off here, but I think it's because y is only set, whereas x is instantiated to something non-trivial - the instantiation could involve separate actions in the New() method, and since instantiating the variable could have side-effects, it's not considered unused. In your case it's just a base object(), so there's no impact, but perhaps the compiler isn't smart enough to tell the difference.
With y, on the other hand, there are no side-effects to the instantiation, so it's considered unused - the application's code path would be unchanged if it were removed entirely.
It could be that since
x
is a reference type, and is thus stored on the heap, that it would prevent garbage collection of that object untilx
goes out of scope.for example:
In contrast to:
Eclipse will consider the case unused.
It turns out that this warning is suppressed when the right-hand-side of the assignment operation is not a compile-time constant.
A since-deleted post on Microsoft's Visual Studio feedback site explained that it's because they had lots of complaints from people who were assigning variables purely so they could see what a method call returned during debugging, and found the warning irritating:
I think this is a bit of a shame since:
Anyway, I understand that you can't please everyone.
My hunch is that, being
x
a reference type the compiler does not show any warning since the constructor may be performing some operation that may very well be "meaningful"; in contrast,y
being a value type whose value only gets assigned to but never used, it's easy for the compiler to tell you that there's no point in doing this if you are not going to reference it down the line.Resharper will also warn you that x is unused.