I have a problem understanding what's causes the compilation error in the code below:
static class Program
{
static void Main()
{
dynamic x = "";
var test = foo(x);
if (test == "test")
{
Console.WriteLine(test);
}
switch (test)
{
case "test":
Console.WriteLine(test);
break;
}
}
private static string foo(object item)
{
return "bar";
}
}
The error I get is in switch (test) line:
A switch expression or case label must be a bool, char, string, integral,
enum, or corresponding nullable type.
Intellisence shows me that foo operation will be resolved on runtime, which is fine because I'm using a dynamic type as a param. However I don't understand how if condition compiles fine when switch doesn't.
Code above is just simplified version of what I have in my application (VSTO) which appeared after migrating the app from VSTO3 to VSTO4 when one method in VSTO was changed to return dynamic type values instead of object.
Can anyone give me an explanation what's the problem. I know how to resolve it but I'd like to understand what's happening.
switchisn't defined for every possible object type – thecoop Jun 2 '10 at 13:11switchon adynamic?" I think the question really should be "Why istesttyped asdynamicin the first place?" I get that iffoohad overloads which returned different types,testwould have to bedynamic; but since it doesn't, I'm still having trouble figuring out the answer to the "real" question here. – Dan Tao Jun 2 '10 at 13:42dynamicinput, then the output is alsodynamic, irregardless of whether there's only one possible interpretation of the expression (because, say, you could add another method using reflection) – thecoop Jun 3 '10 at 9:50