volume_mute

C# 2010 dynamic type declaration

publish date2022/09/05 07:25:00 GMT+10

volume_mute

A variable can be declared to use dynamic type binding by including the _________ reserved word in its declaration,

Missing Word

Correct Answer

dynamic

Explanation

The option of dynamic type binding was introduced in C# 2010. A variable can be declared to use dynamic type binding by including the dynamic reserved word in its declaration, as in the following example:

dynamic any

Reference

Concepts of Programming languages, 10th ed


Quizzes you can take where this question appears