Shortcomings of using dynamic types in C#
Posted
by
Karthik Sreenivasan
on Programmers
See other posts from Programmers
or by Karthik Sreenivasan
Published on 2012-02-15T09:56:44Z
Indexed on
2014/06/11
15:40 UTC
Read the original article
Hit count: 483
I have been recently studying more on the dynamic types in C#. With some examples I understood once the code is compiled, it does not need to be recompiled again but can be executed directly.
I feel the flexibility provided by the keyword to actually be able to change data type at will is a great advantage.
Question,
Are there any specific shortcomings apart from wrong dynamic method calls which throw run time exceptions which developers must know before starting the implementation.
© Programmers or respective owner