...

/

Quiz Yourself: Dynamic Binding

Quiz Yourself: Dynamic Binding

Test your knowledge of dynamic binding.

We'll cover the following...

Dynamic Binding Quiz

1.

Consider the following code:

var message = "Hello World!";
message.NonExistingMethod();

What will happen if we try to run it?

A.

The code won’t compile.

B.

The code will compile, but will generate an exception.


1 / 3