May 25th, 2010
Code purists will be horrified, but dynamic types have arrived in C# 4.0. In languages such as PHP and JavaScript, variables are loosely typed; there’s no need to declare what type of data a variable will hold, so there are no constraints on the operators or methods you can use, for example: // JavaScript code var myvar = “Hello”; myvar += 1; alert(myvar); // outputs “Hello1″ C# and VisualBasic.NET are strongly...









