When should one use dynamic keyword in c# 4.0?.......Any good example with dynamic keyword in c# 4.0 that explains its usage....
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
Here's a general walkhrough. |
|||
|
|
|
Dynamic should be used only when not using it is painful. Like in MS Office libraries. In all other cases it should be avoided as compile type checking is beneficial. Following are the good situation of using dynamic.
|
|||
|
|
|
I've been trying to answer such questions on C# FAQ blog: http://blogs.msdn.com/csharpfaq/archive/tags/dynamic/default.aspx |
|||
|
|
|
You can check this blog entry. It provides an introduction on .Net dynamic types as well as some usage scenarios and considerations on the dangers exposed by dynamic programming. |
|||
|
|
