in C Sharp by (32.2k points)
What is the difference between early binding and late binding in C#?

1 Answer

0 votes
by (20.8k points)

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

0 votes
asked Feb 16, 2020 in C Sharp by rahuljain1 (6.5k points)
+1 vote
...