Question:What impact will using implicitly typed local variables as in the following example have? var sample = "Hello World";
A The actual type is determined at compilation time, and has no impact on the runtime
B The actual type is determined at runtime, and late binding takes effect
C The actual type is based on the native VARIANT concept, and no binding to a specific type takes place.
D "var" itself is a specific type defined by the framework, and no special binding takes place
+ AnswerA
+ Report