2
Reply

How can we achieve polymorphism in below code snippet ?

Vivek Sheth

Vivek Sheth

May 13 2016 5:33 AM
288
How can we achieve Runtime polymorphism in below code snippet ?
 
class A
{
 
}
 
Class B : A
{
 
 
Here both classes are empty. 

Answers (2)