IOT Virtual Conference - Register now to book your ticket and get updates
x
CONGRATULATIONS! C# Corner Q1, 2021 MVPs Announced
Why Join
Become a member
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
TECHNOLOGIES
ANSWERS
LEARN
NEWS
BLOGS
VIDEOS
INTERVIEW PREP
BOOKS
EVENTS
CAREER
MEMBERS
JOBS
About abstract class
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Nishant Mittal (3)
Shaili Dashora (3)
Bechir Bejaoui (3)
Rajesh VS (3)
Manish Sharma (2)
Matthew Cochran (2)
Sahil Sharma (2)
Akhil Mittal (2)
Rahul Sahay (2)
Harpreet Singh (2)
Abhishek Jaiswal (2)
Vinod Kumar (2)
Ashish Jaiman (2)
Prakash Tripathi (1)
Pankaj Patel (1)
Rikam Palkar (1)
Vijay Kumari (1)
Abhishek Dubey (1)
Abubackkar Shithik (1)
Craig Breakspear (1)
Annathurai Subbaiah (1)
Faizan Ahmed (1)
Vithal Wadje (1)
Gaurav Jain (1)
Sandeep Singh Shekhawat (1)
Pankaj Kumar Choudhary (1)
Kapil Gaur (1)
Farhan Ahmed (1)
Sourabh Mishra (1)
Habibur Rony (1)
Yogendra Kumar (1)
Jatin Malik (1)
Debendra Dash (1)
Vikram Chaudhary (1)
Saillesh Pawar (1)
Amit Choudhary (1)
Shakti Saxena (1)
Kiranteja Jallepalli (1)
Nanhe Siddique (1)
Raja K (1)
Jignesh Trivedi (1)
Abhishek Singh (1)
Iftikar Hussain (1)
Sharad Gupta (1)
Satyapriya Nayak (1)
C# Curator (1)
Erika Ehrli (1)
Niranjan Kumar Kandaswamy (1)
Vikas Mishra (1)
Mahadesh Mahalingappa (1)
Mayur Gujrathi (1)
Shees Abidi (1)
Giuseppe Russo (1)
Related resources for abstract class
No resource found
Preparing for .NET Interviews - Part Seven (Abstract Class & Interface)
4/6/2021 10:04:47 AM.
This article presents the common questions asked in .NET interviews related to Abstract Class & Interface and explains the answers in an easy way.
Difference between abstract class and interface in C#
9/24/2020 9:20:39 PM.
In this article I have explained the difference between Abstract Class and Interface with some examples and some information about an Interface.
Abstract Class Vs Interface - C#
9/14/2020 11:38:28 AM.
In this article, you will learn about Abstract Class Vs Interface - C#.
Purpose Of Abstract Class In Object Oriented Programming
6/20/2020 6:07:51 AM.
We have been using abstract class for a while. Let's understand why it was actually introduced.
Difference Between Abstract Class And Interface In Java
12/10/2019 3:10:58 PM.
Abstract Class and Interface are a core part of the Java programming language. Abstract class and interface are used in Java to archive Abstraction.
Abstract Class in JAVA
9/10/2019 5:43:01 AM.
In this article you will learn about abstract classes in JAVA.
Kotlin - Class and Object
9/5/2019 10:16:14 AM.
Classes and objects are the center any object oriented programming language. this article, you will learn all about classes and objects in Kotlin. You will also learn various types of classes and clas
Multiple Inheritance in C#
5/24/2019 7:01:07 AM.
Learn how to implement multiple inheritance in C#. Inheritance is one of the key characteristics of an object oriented programming language.
C# Interface Based Development
5/7/2019 4:17:37 AM.
When trying to build maintainable, reusable, and flexible C# code, the object oriented nature of C# only gets us 50% of the way there. Programming to interfaces can provide us with the last 50%. Inte
Introduction to Model View Control (MVC) Pattern using C#
5/7/2019 12:46:17 AM.
The benefits of using the Model-View-Control (MVC) pattern in our development projects is that we can completely decouple our business and presentation application layers. Furthermore, we will have a
Abstract Class In C#
4/6/2019 8:37:27 AM.
An abstract class in C# is a class that can't be instantiated. Here learn how to declare and implement abstract classes in C# applications.
Abstract Class & Interface: Two Villains of Every Interview - Part 2
4/1/2019 4:36:48 AM.
This article explains the important key points of interfaces in C#. Learn what is interface, why we need an interface, how to define a C# interface.
Abstract Class & Interface: Two Villains of Every Interview - Part 1
4/1/2019 4:25:32 AM.
This article explains the important key points of Abstract Class in C#. Learn what is an Abstract Class, how to define an Abstract Class, and why do we need an Abstract Class.
Abstraction In C#
3/31/2019 8:29:08 AM.
This article and code example show how to implement Abstraction In C#. An abstract base class in C# cannot be instantiated; it means the object of that class cannot be created.
Abstract Class And Abstract Method In C#
3/14/2019 2:24:06 AM.
In this article I have described abstraction in the C# language and a way to achieve dynamic polymorphism with the help of abstract method in the C# language.
Using Abstract Class In C#
3/5/2019 2:55:38 PM.
In this article we learn about abstract classes in C# using a console appication example
Abstract Class And Interface - Two Pillars In Object Oriented Programming
3/4/2019 10:21:46 AM.
Abstract classes are those classes which can't be initiated, that is, they are considered as incomplete classes. Let's learn the concepts of Abstract Classes and Interface in OOP.
How To Use Abstract Class, Abstract Method, And Abstract Property In C#
2/11/2019 12:23:42 PM.
In this article, we look at what an abstract class is, its method and properties, and how to use them.
Abstract Classes In C#
2/8/2019 9:56:33 PM.
This article explains abstract classes in C#. An abstract class is a special type of class that cannot be instantiated and acts as a base class for other classes. Abstract class members marked as abst
When To Use❓Abstract Class And Interface In C# Programming
1/14/2019 2:44:14 AM.
In this video, I have discussed, in details, the scenarios in which you should use abstract class and interface and the scenarios when the interface works better. I have started from defining the abst
When to Use Interface And When To Use Abstract Class - Part One
11/29/2018 2:49:43 AM.
I hope this article helps you to explore all the possibilities of Abstract Class. My idea is to give readers an understanding of where to user Interface and Abstract class.
Overview Of Abstract Class And Interface
11/22/2018 4:02:28 AM.
In this article, I will explain you abstract class and interface. Which is the most important topic to cover? Most of the interviewer ask about abstract class and interface. I will cover all possible
Abstract Classes in C#
9/5/2018 2:10:32 AM.
This article explains Abstract Classes in C#. Abstract Class is a type of class for which we cannot create an instance of the class.
Groundwork For .NET Interview
7/22/2018 2:07:32 AM.
This article covers the basic high-level concepts on .net for getting up to speed the interview.
Explore Interface Vs Abstract Class
6/28/2017 1:44:38 AM.
Here I explore an Interface Vs an Abstract Class. An interface can only have a declaration but not a definition. An interface can only have methods, properties, indexers and events whereas a class can
Abstract Vs Interface In C#
6/21/2017 1:46:19 AM.
This video helps to understand the similarities and differences between Interface & Abstract class in C#. Which one to choose, what are their purpose
Diving Into OOP (Day 4) : Polymorphism and Inheritance (All About Abstract Classes in C#)
1/24/2017 11:34:45 PM.
In this article of the series "Diving Into OOP", we’ll discuss the hottest and most exciting topic of OOP in C#, Abstract Classes.
When To Use Abstract Class and Interface In Real Projects
9/4/2016 12:16:10 AM.
In this article, you will learn when to use an abstract class and an interface in real projects.
Why Do We Use Abstract Class?
7/11/2016 6:15:37 PM.
In this article, you will learn why we use abstract class.
When to Use Interface And When To Use Abstract Class - Part Three
6/22/2016 12:38:48 PM.
In this article you will learn when to use interface and when to use abstract class.
When to Use Interface And When To Use Abstract Class - Part Two
6/17/2016 12:09:16 PM.
In this article you will learn when to use Interface and when to use Abstract Class.
C# and ASP.Net Interview Question and Answers
4/6/2016 4:50:23 AM.
In this article I will demonstrate C# and ASP.NET Interview Question and Answers.
Learn Tiny Bit Of C# In 7 Days - Day 3
12/29/2015 6:23:16 AM.
This article intended to focus towards the beginners so that they can easily grasp the C# Language concepts.
Class Vs Abstract Class Vs Interfaces
12/16/2015 8:49:21 AM.
In this article you will learn about the differences between Class, Abstract Class and Interfaces in C# language.
Abstract Classes In C#
12/8/2015 1:53:26 AM.
In this article you will learn about abstract classes in C#.
Abstract Class vs Interfaces In Object Oriented EcoSystem
12/3/2015 12:05:41 AM.
In this blog you will learn about the difference between Abstract class and Interface.
Template Method Design Pattern Using C#
8/14/2015 9:30:55 PM.
In this article we will discuss the template method design pattern using C#.
Abstract Class in C#
5/19/2015 7:00:54 AM.
This article explains abstract classes in C# programming.
Abstract Class in C#
5/16/2015 4:02:09 PM.
In this article we will learn about the Abstract Class in C#.
Abstract Class Versus Interface
3/10/2015 1:17:35 AM.
This article describes abstract classes and interfaces and compares them.
Difference Between Abstract Classes and Interfaces
1/29/2015 12:59:22 AM.
In this article we will learn about the differences between abstract classes and interfaces.
Abstract Classes in C#
1/10/2015 7:08:21 PM.
In this article, we will learn about the basics of an abstract class.
Abstract Classes In Depth
1/7/2015 12:36:37 AM.
In this article you will learn about abstract classes.
Abstract Method From an Abstract Class Constructor
11/29/2014 5:39:47 PM.
In this article you will learn how to call an abstract method from an abstract class constructor.
Constructors In Abstract Classes
11/29/2014 4:48:06 PM.
In this article you will learn about constructors in abstract classes.
Use an Abstract Class in C#
11/28/2014 3:28:58 AM.
In this article, I will explain the abstract class concept.
What really it differs an Interface from a class: Part III
9/4/2014 1:19:22 AM.
As a response to the third question asked in the first article Part I-What really it differs an Interface from a class? I can say that also interfaces play others important roles. They can serve as a powerful tool to explore objects
What's really differs an Interface from a class?: Part II
9/4/2014 1:18:09 AM.
In this article, I will respond to the second question posed in the previous one. Part I-What's really differs an Interface from a class?
What really it differs an Interface from a class: Part I
9/4/2014 1:13:07 AM.
This article tells you about the basic difference between an interface and a class.
What an Abstract Class is and Where It Should be Used in a Practical Scenario
5/9/2014 6:55:32 PM.
This article explains what an Abstract class is and where it should be used in a practical scenario.
Abstract Classes in C#
4/6/2014 5:19:12 PM.
This article will explain one of the most important concepts of object oriented languages (for C#), abstract classes.
Abstract Classes in C#
4/5/2014 11:24:26 AM.
This article exlains one of the most important concepts of object oriented languages, abstract classes (in reference to C#).
How to Implement Custom Role Provider in VS2008 and VS2010
7/4/2013 12:09:55 PM.
Deference Between Abstract Class and Interface in PHP
2/27/2013 3:55:00 PM.
In this article I explain the difference between an abstract class and an interface class in PHP.
Create Abstract Class in PHP
2/11/2013 11:44:49 AM.
In this article I explain how to create an abstract class and methods in PHP
How to Use Abstract Class in PHP
2/9/2013 5:03:06 PM.
I will describe abstract classes in PHP.
Abstract Classes in VB.NET
11/10/2012 12:10:58 AM.
This is a detailed analysis of abstract classes and methods in VB.NET with some concrete examples.
Abstract class and Interface in VB.NET
11/9/2012 10:27:28 AM.
This article defines Abstract class and Interface in VB.NET.
Creational Pattern - Abstract Factory in VB.NET
11/8/2012 7:34:27 AM.
An abstract factory provides an interface for creating families of related objects without specifying their concrete classes. Sometimes one wants to construct an instance of one of a suite of classes, deciding between the classes at the time of instantiation.
Abstract Class and Abstract Methods
10/20/2012 3:41:02 AM.
In this article I will explain abstract class and abstract methods.
Composite Patterns in C#
10/3/2012 8:22:26 AM.
A Composite is a tree structure consisting of individual objects mixed with compositions of objects, that is, objects that have other objects as their children.
OOPS Concepts and .NET Part 2: Inheritance, Abstraction, & Polymorphism
9/29/2012 7:04:01 AM.
The following article is the second of a three-part article series that presents definitions and samples for different Object-Oriented Programming (OOP) concepts and its implementation in .NET. The first part examined the concepts of classes, objects, and structures. This part examines the concepts of inheritance, abstraction, and polymorphism. The third and last part will examine the concepts of interface, multiple interface inheritance, collections, and overloading.
Creational Pattern - Abstract Factory
5/13/2012 6:08:29 AM.
An abstract factory provides an interface for creating families of related objects without specifying their concrete classes. Sometimes one wants to construct an instance of one of a suite of classes, deciding between the classes at the time of instantiation.
Creating Extensible and Abstract Layer
5/13/2012 5:56:45 AM.
This article explains you about the abstraction and extensibility which is an important factor in modern day frameworks.
Working With an Abstract Class in JSP
12/16/2011 11:33:06 PM.
Java provides a special type of class called an abstract class which helps us to organize our classes based on common methods. An abstract class lets you put the common method names in one abstract class without having to write the actual implementation code.
Object Creation and Instantiation
7/23/2011 2:30:59 AM.
In this article I am trying an alternative approach for Multiple Inheritance.
Interfaces in .NET
4/24/2011 10:05:40 AM.
In the article before this I explained Abstract Classes.
Abstract Class, Interface and relation to Method Overriding and Method Hiding in C#
10/14/2010 1:19:15 PM.
In my this article I present a way to easily understand Abstract Types, Interfaces and their difference with Overriding and Hiding.
Implementing Inheritance in C#
12/28/2005 2:17:11 AM.
Inheritance is one of the most important characteristic of OOP. In this article, I will explain how to implement the inheritance in C# by explaining through an example.
Abstract Classes And Methods
12/23/2005 12:35:00 AM.
This is a detailed analysis of Abstract classes and methods in C# with some concrete examples.