0 votes
in C Sharp by
What is the difference between early binding and late binding in C#?

1 Answer

0 votes
by

Early binding and late binding are the concept of polymorphism. There are two types of polymorphism in C#.

Compile Time Polymorphism: It is also known as early binding.

Run Time Polymorphism: It is also known as late binding or method overriding or dynamic polymorphism.

Related questions

+1 vote
asked May 6, 2020 in C Sharp by SakshiSharma
0 votes
asked Oct 18, 2019 in C Sharp by Robin
...