vote up 3 vote down star
1

Can dynamic variables in C# 4.0 be members on a class or passed into or returned from methods? var from C# 3.0 couldn't but I haven't seen any mention anywhere of whether it is possible or not with dynamic.

flag

80% accept rate

2 Answers

vote up 4 vote down check

All of the above. I tried them out in the VPC and was able to do all of these. See the 'New Features in C#' document here

link|flag
vote up 3 vote down

Yes. There's a big difference between var and dynamic.

var just means "let the compiler infer the real type of the variable".

dynamic is the type of the variable - so anywhere you can specify a type, you can specify dynamic instead, as I understand it. (I'm sure there are some exceptions to this, but that's the basic idea.)

EDIT: Chris Burrow's first blog entry on dynamic (there's a second one already; expect more soon) gives an example class which uses dynamic all over the place.

link|flag
Actually dynamic isn't really the type. It more just says, don't determine the actual type until runtime. You can use "is" on dynamic types and figure out what they really are. – John Sheehan Oct 28 '08 at 22:07
But dynamic is the type of the variable still, in the same way that if you declare "object x = new MemoryStream()" then the type of the variable is "object" whereas the type of the object the variable's value refers to is "MemoryStream". – Jon Skeet Oct 28 '08 at 22:42
I am trying to find the place where I read in MS lit that explained what I was trying to explain. I can't find it again. I've read too much info from PDC in the past two days. – John Sheehan Oct 29 '08 at 0:33
Actually, "dynamic" is the type of the variable. The object's underlying type is some (static) CLR type. It's only the method dispatch that's dynamic. – Curt Hagenlocher Oct 29 '08 at 1:45
If dynamic is the type of the variable then this should compile, right? dynamic x = GetDynamic(); var y = x; // y is also dynamic – dalle Oct 29 '08 at 10:27
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.