I have following code:
public class Processor
{
private Query _query =
new SpecificQuery1();
//OR
//new SpecificQuery2();
public void ProcessItem(dynamic dynamicResult)
{
//Can't use intellisense on dynamicResult
var staticResult = dynamicResult as _query.GetSomeType();//Can't do it :(
//Can use intellisense on staticResult
}
}
and, surprisingly, it doesn't compile. Is there any way I could cast dynamic into var? I know it sounds insane, but this part will be edited a lot and if someone changes the QueryImplementation, he has to also change type in ProcessItem(). I want to reduce the number of steps to 1 - simply replace the SpecificQuery() and the type will change by itself.
So let me rephrase. I'd like to know if there is some way how to use intellisense on dynamicResult(or some of it's cast) based on which constructor is assigned to base class Query.
Thanks
EDIT : I'm sorry, I probably asked incorrectly. I understand what is dynamic and var. I didn't intent to use intellisense on dynamic. I didn't intent to really cast dynamic to var.
What I wanted to say is, that if I have compile-time knowledge of what type the dynamic will be (it is stored in Query implementation - it can be static, const whatever I want) - is there any way I can use this knowledge to enable intellisense in ProcessItem()?
I will know always, then why is itdynamic? – Tom Wijsman Nov 19 '12 at 12:15ascast above doesn't make sense. A cast changes the compile-time type to a specific type which has to be known compile-time. For example if you sayvar resultCast = resultOrig as string;then after that (and anullcheck) you can say stuff likeresultCast.Lengthbecause the compile-time type ofresultCastisstring, and strings have lengths. However, the cast doesn't change the fact that there is only one object, and the object has only one runtime-type.Object.RefereceEquals(resultOrig, resultCast). How could the compiler know what_query.GetSomeType()will return? – Jeppe Stig Nielsen Nov 19 '12 at 12:43