G
Guest
It helps the VB.NET programmer make the transition. 
The use is not evident in something as simple as:
var i = 1;
var s = "string";
It becomes more useful when dealing with array types, esp. if you are lazy.

var i = { 1, 2, 3, 4 };
var s = { "1", "2", "3", "4" };
I am not fond of implicit code, so I will have to see a good treatise before
jumping on this bandwagon.
--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
***************************
Think Outside the Box!
***************************

The use is not evident in something as simple as:
var i = 1;
var s = "string";
It becomes more useful when dealing with array types, esp. if you are lazy.

var i = { 1, 2, 3, 4 };
var s = { "1", "2", "3", "4" };
I am not fond of implicit code, so I will have to see a good treatise before
jumping on this bandwagon.
--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
***************************
Think Outside the Box!
***************************