|
|
|
Based on the info I gleaned from the www, the var keyword is a stopgap arrangement. If you don't want to classify a variable as a specific type, you declare it as a var. This type of declaration prevents any blocks and jams and allows you to continue with the coding process. Later, you can either replace var with a specific type or let it be. Your code will still compile perfectly fine because the c# compiler automatically converts all var variables into the correct type. |
|
|
Commenting by HaloScan |