If I make an empty test class:
public class Foo
{
}
And I try to compile code with this statement:
Foo foo = "test";
Then I get this error as expected:
Cannot implicitly convert type 'string' to 'ConsoleApplication1.Foo'
However, if I change the declaration of Foo from class to interface, the error changes to this (emphasis mine):
Cannot implicitly convert type 'string' to 'ConsoleApplication1.Foo'. An explicit conversion exists (are you missing a cast?)
What is this "explicit conversion" which is supposed to exist?
update: the issue is a bit more subtle than I initially thought. To reproduce it, put this code in a new console application in Visual Studio 2008:
namespace ConsoleApplication1
{
class Foo
{
}
interface IFoo
{
}
class Program
{
static void Main(string[] args)
{
Foo b = "hello";
}
}
}
Visual studio will automatically show the correct error at this point (before you build the code). Now insert the "I" to turn "Foo" into "IFoo" and wait a few seconds without building. The "explicit conversion exists" version of the error will now appear automatically in the error output window and in the tool tip for the assignment error.
The erroneous error then disappears again when you explicitly hit F6 to build.
