
C#4.0 Dynamic Vs Var keyword
In C # 4.0, There is a new keyword called dynamic, We can use ia as any datatype like float,int,string, double etc.
Actually we can implement the samething using Var keyword also, But there is a different behavior.
If...