The question about conversion shows that you missed the point. VAR is not a type. It's a keyword that allows you not to manually write the type of a variable in code, because the compiler already knows it. For example, var x = "abc" it's exactly the same as str x = "abc" . The CIL will be identical .
↧