What Is a Concrete Class? A concrete class is a class that we can create an instance of, using the new keyword . In other words, it’s a full implementation of its blueprint. A concrete class is complete.31 Ara 2019
Read moreWhat is concrete class in C#?
Concrete class is nothing but normal class, we can use as a base class or may not . Not compulsory, it can’t contain abstract methods. we can create object and work with this class. Jul, 2006 13. A concrete class is used to define a useful object that can be instantiated as an automatic variable on the program stack.
Read more