Beginner C#
Q16 / 100

What is a delegate in C#?

Correct! Well done.

Incorrect.

The correct answer is B) A type-safe function pointer that can reference methods with a matching signature

B

Correct Answer

A type-safe function pointer that can reference methods with a matching signature

Explanation

delegate int Operation(int a, int b); declares a delegate. Methods with matching signatures can be assigned to it and invoked.

Progress
16/100