Earlier I asked a question about why I see so many examples use the 'var' keyword and got the answer that while it's only necessary for anonymous types, that it is used nonetheless to make writing code 'quicker'/easier and 'just because'.
Following this link I saw that var gets compiled down to the correct type in the IL (you'll see it about midway down article).
My question is how much more, if any, IL code does using the 'var' keyword take, and would it be even close to having a measurable level on the performance of the code if it was used everywhere?
Thanks, Jeff
edit: Previous question is here.