C# 4.0: My First Dynamic Program
I am super excited to see Anders demonstrating C# 4.0 for first time in public. I am a real fan of him and downloaded the public bit to tryout. Here is my first Dynamic C# 4.0 program.
There is nothing much to be excited from my Program but I am very much after hitting F5.
static void Main(string[] args)
{
dynamic i = 10;
dynamic sHello = "Hello C# 4.0";
Console.WriteLine(i);
Console.WriteLine(sHello);
}
More to come.
Namoskar!!!
Comments
Anonymous
October 30, 2008
PingBack from http://blog.a-foton.ru/index.php/2008/10/31/c-40-my-first-dynamic-program/Anonymous
October 30, 2008
In the demo, Anders had a Using statement that was using the System.Dynamic namespace in order to implement the DynamicObject class. Do you happen to know where that assembly resides in the VS2010 VPC?