C# 4.0 introduced a new type called 'dynamic'. It all sounds good, but what would a programmer use it for?
Is there a situation where it can save the day?
|
|
The dynamic keyword is new to C# 4.0, and is used to tell the compiler that a variable's type can change or that it is not known until runtime. Think of it as being able to interact with an Object without having to cast it.
Notice we did not need to cast nor declare cust as type Customer. Because we declared it dynamic, the runtime takes over and then searches and sets the FirstName property for us. Now, of course, when you are using a dynamic variable, you are giving up compiler type checking. This means the call cust.MissingMethod() will compile and not fail until runtime. The result of this operation is a RuntimeBinderException because MissingMethod is not defined on the Customer class. The example above shows how dynamic works when calling methods and properties. Another powerful (and potentially dangerous) feature is being able to reuse variables for different types of data. I'm sure the Python, Ruby, and Perl programmers out there can think of a million ways to take advantage of this, but I've been using C# so long that it just feels "wrong" to me.
OK, so you most likely will not be writing code like the above very often. There may be times, however, when variable reuse can come in handy or clean up a dirty piece of legacy code. One simple case I run into often is constantly having to cast between decimal and double.
The second line does not compile because 2.5 is typed as a double and line 3 does not compile because Math.Sqrt expects a double. Obviously, all you have to do is cast and/or change your variable type, but there may be situations where dynamic makes sense to use.
Read more feature : http://www.codeproject.com/KB/cs/CSharp4Features.aspx |
|||||||||||||||||||||
|
|
The Take an example. If you have a COM object, like the To call this method, you would need something like this (I'm simplifying, this is not actual code):
Note all those arguments? You need to pass those since C# before version 4.0 did not have a notion of optional arguments. In C# 4.0, COM APIs have been made easier to work with by introducing:
The new syntax for the above call would be:
See how much easier it looks, how much more readable it becomes? Let's break that apart:
The magic is that the C# compiler will now inject the necessary code, and work with new classes in the runtime, to do almost the exact same thing that you did before, but the syntax has been hidden from you, now you can focus on the what, and not so much on the how. Anders Hejlsberg is fond of saying that you have to invoke different "incantations", which is a sort of pun on the magic of the whole thing, where you typically have to wave your hand(s) and say some magic words in the right order to get a certain type of spell going. The old API way of talking to COM objects was a lot of that, you needed to jump through a lot of hoops in order to coax the compiler to compile the code for you. Things break down in C# before version 4.0 even more if you try to talk to a COM object that you don't have an interface or class for, all you have is an If you don't know what it is, The above Save method could look like this (this is definitely not the right code):
All this for just opening a document. VB had optional arguments and support for most of this out of the box a long time ago, so this C# code:
is basically just C# catching up to VB in terms of expressiveness, but doing it the right way, by making it extendable, and not just for COM. Of course this is also available for VB.NET or any other language built on top of the .NET runtime. You can find more information about the However, what if you wanted to talk to a Python object? There's a different API for that than the one used for COM objects, and since Python objects are dynamic in nature as well, you need to resort to reflection magic to find the right methods to call, their parameters, etc. but not the .NET reflection, something written for Python, pretty much like the IDispatch code above, just altogether different. And for Ruby? A different API still. JavaScript? Same deal, different API for that as well. The dynamic keyword consists of two things:
The This means that although you can write code like this:
and have it compile, it was not meant as a sort of magic-lets-figure-out-what-you-meant-at-runtime type of system. The whole purpose was to make it easier to talk to other types of objects. There's plenty of material on the internet about the keyword, proponents, opponents, discussions, rants, praise, etc. I suggest you start with the following links and then google for more:
|
|||||||
|
|
I wrote an article about dynamics on the code project here: |
|||||||
|
|
It makes it easier for static typed languages (CLR) to interoperate with dynamic ones (python, ruby ...) running on the DLR (dynamic language runtime), see MSDN. |
|||||||||||||
|
|
It evaluates at runtime, so you can switch the type like you can in JavaScript to whatever you want. This is legit:
And so you can change the type as you need. Use it as a last resort, beneficial, but I heard a lot goes on under the scenes in terms of generated IL. |
|||||||||
|
|
It will mostly be used by RAD and Python victims to destroy code quality, IntelliSense and compile time bug detection. |
||||
|
|