Computer Science, asked by sumy114, 1 year ago

What is dynamic binding in C#?

Answers

Answered by Anonymous
0

\huge\sf\red{\underline{Heyaa\:mate}}

︻︼︻︼︻ ︻︼︻︼︻ ︻︼︻︼︻

\underline\red{\mathbb{ANSWER}}

✔️Dynamic binding also called dynamic dispatch is the process of linking procedure call to a specific sequence of code (method) at run-time.

✔️ It means that the code to be executed for a specific procedure call is not known until run-time.

✔️Dynamic binding is also known as late binding or run-time binding.

︻︼︻︼︻ ︻︼︻︼︻ ︻︼︻︼︻

Answered by Anonymous
1

C# dynamic is a keyword that is used to make a property or a method dynamic. When we make dynamic type, compiler does not check it at compile-time. The purpose of using dynamic binding is to avoid compile time checking of the code. The property created using dynamic keyword works like object. CsharpProgrammingServer Side Programming. In Dynamic binding, the compiler will not do type checking at compile time. At runtime, the checking is done. Use it to avoid the restriction of anonymous types to one method.

hope it helps you....

Similar questions