Is there any difference on whether I initialize an integer variable like:
int i = 0; int i;
Does the compiler or CLR treat this as the same
As the following link states, they are exactly the same:
http://msdn.microsoft.com/en-us/library/aa664742%28VS.71%29.aspx