As mentioned the var is an implicit type, the compiler works out at compile-time what type var should be. No performance issues. You can write some test code, compile, and use ildasm.exe to check generated CIL
MSDN - View Assembly Contents
Example
Note: The int declaration is the same as the var declaration in the IL. So the execution engine doesn't know that you used var.
And: They are compiled to the same IL. The var keyword is equally fast as explicit types like int or string.
Intermediate Language Method using var [C#]
> public int ReturnValue() {
> var a = 5;
> int b = 5;
>
> return a + b; }
IL of the method
.method public hidebysig instance int32 ReturnValue() cil managed
{
// Code size 9 (0x9)
.maxstack 1
.locals init ([0] int32 result,
[1] int32 CS$1$0000)
IL_0000: nop
IL_0001: ldc.i4.5
IL_0002: stloc.0
IL_0003: ldloc.0
IL_0004: stloc.1
IL_0005: br.s IL_0007
IL_0007: ldloc.1
IL_0008: ret
} // end of method VarKW::ReturnValue