Click here to Skip to main content
15,879,326 members
Articles / Programming Languages / C# 4.0

Introduction - DLR (Dynamic Language Runtime)

Rate me:
Please Sign up or sign in to vote.
3.22/5 (27 votes)
4 Oct 2010CPOL2 min read 72.1K   286   16   15
Using dynamic types in Microsoft Visual Studio .NET (Framework 4.0)

Introduction

CLR (Common language runtime) is nothing new now, .NET developers are familiar with the CLR, how to work with the object. There is no doubt that now we can design our component and application easily using CLR.

We will not discuss about the CLR. We will try to focus on the DLR ((Dynamic Language Runtime). At first, we need to know what is DLR. In a simply world, we can say that the DLR has some new features which added to common language runtime (CLR) for Microsoft .NET Framework 4.0.

More information about CLR can be found here.

What Dynamic Types Do

Let’s try to get some more. One of the powerful features of Microsoft .NET Framework 4.0 is the Dynamic Types.

Dynamic Types allow us to write code in such a way that we can go around compile time checking. Note that bypass does not mean that we can remove the compile time errors, it means if the operation is not valid, then we cannot detect the error at compile time. This error will appear only in run time.

How to Work with Dynamic Types

Microsoft .NET Framework 4.0 provides us the System.Dynamic namespace. To use Dynamic Types, we need to add the references DLL of System.Dynamic.

Figure: Showing the dynamic type of current object output.

DLR.jpg

Well , I hope that you get the basics of DLR ((Dynamic Language Runtime), so let's try to play with a few code snippets and a few keywords of Microsoft Visual Studio .NET. We are familiar with the keyword “var” we will play with this keyword, before that one interesting thing I must share is that it is possible to change an object type runtime? Probably your answer will be NO. But objects defined with dynamic keyword can change their type at runtime. Isn't it cool. A simple code example is given below:

More information about System.Dynamic can be found here.

Using the Code

Here in this example below, we have a class called Class1(). The Class1() has two functions displayMessage() and displayNumeric(). Both functions are returning different values.

C#
static void Main(string[] args)
{
     dynamic myDynamicVariable;
     // "dynamic" is keyword for declaring dynamic type variables 
     var _objClass = new Class1();
     // Creating object 

     myDynamicVariable = _objClass.displayMessage();
     Console.WriteLine("Value: " + myDynamicVariable + ". 
	Type of dynamic variable is: " + myDynamicVariable.GetType());
     // Displaying types
     myDynamicVariable = _objClass.displayNumeric();
     Console.WriteLine("\nValue: My CP Member Id # " + myDynamicVariable + 
	". Type of dynamic variable is: " + myDynamicVariable.GetType());
     // Displaying types
            
      Console.ReadLine();
}
        class Class1
        {
            private string sMessage = "The Code Project is COOL";
            public string displayMessage()
            {
                return sMessage;
            }
            public int displayNumeric()
            {
                return 1186309;
            }
        } 

If you look, we have declared a dynamic variable myDynamicVariable.

C#
dynamic myDynamicVariable;
// "dynamic" is keyword for declaring dynamic type variables 

So we are assigning string value to it and printing it in console, value as well as its type. This is all about Dynamic type.

Conclusion

I hope this might be helpful to you. Enjoy!

History

  • 4th October 2010: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions

 
GeneralMy vote of 3 Pin
VishalRajut22-Aug-13 19:29
VishalRajut22-Aug-13 19:29 
Question[My vote of 1] it's too simple Pin
Hendra Yudha P20-Feb-12 17:09
Hendra Yudha P20-Feb-12 17:09 
GeneralMy vote of 2 Pin
Abolfazl Khusniddinov28-Dec-10 1:32
Abolfazl Khusniddinov28-Dec-10 1:32 
GeneralMy vote of 1 Pin
pvandijk2819-Oct-10 1:06
professionalpvandijk2819-Oct-10 1:06 
GeneralMy vote of 1 Pin
Yury Goltsman13-Oct-10 21:11
Yury Goltsman13-Oct-10 21:11 
GeneralMy vote of 2 Pin
Gishu Pillai12-Oct-10 20:29
Gishu Pillai12-Oct-10 20:29 
GeneralMy vote of 2 Pin
fire_birdie11-Oct-10 19:33
fire_birdie11-Oct-10 19:33 
GeneralMy vote of 1 Pin
Andrey Mazoulnitsyn11-Oct-10 19:28
Andrey Mazoulnitsyn11-Oct-10 19:28 
GeneralMy vote of 2 Pin
vytheese11-Oct-10 18:55
professionalvytheese11-Oct-10 18:55 
GeneralMy vote of 2 Pin
Daniel Brännström9-Oct-10 4:20
Daniel Brännström9-Oct-10 4:20 
GeneralMy vote of 2 Pin
andrew45826-Oct-10 4:21
andrew45826-Oct-10 4:21 
2
GeneralMy vote of 2 Pin
John Brett4-Oct-10 22:59
John Brett4-Oct-10 22:59 
GeneralRe: My vote of 2 Pin
Md. Marufuzzaman5-Oct-10 6:06
professionalMd. Marufuzzaman5-Oct-10 6:06 
GeneralMy vote of 2 Pin
Michael B. Hansen4-Oct-10 20:41
Michael B. Hansen4-Oct-10 20:41 
GeneralRe: My vote of 2 Pin
Md. Marufuzzaman4-Oct-10 22:00
professionalMd. Marufuzzaman4-Oct-10 22:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.