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.

When should one use dynamic keyword in c# 4.0?.......Any good example with dynamic keyword in c# 4.0 that explains its usage....

share|improve this question
Are you asking how to use it or when to use it? – SLaks Apr 20 '10 at 12:11
@Slacks both would be really helpful.. – Oscar Apr 20 '10 at 12:18

4 Answers

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.

  1. Calling javascript method from Silverlight.
  2. COM interop.
  3. May be reading Xml.
share|improve this answer

I've been trying to answer such questions on C# FAQ blog: http://blogs.msdn.com/csharpfaq/archive/tags/dynamic/default.aspx

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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