TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
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
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)
Rajesh VS (3)
Shaili Dashora (3)
Bechir Bejaoui (3)
Ajay Kumar (2)
Matthew Cochran (2)
Jitendra Mesavaniya (2)
Jaimin Shethiya (2)
Manish Sharma (2)
Tural Suleymani (2)
Akhil Mittal (2)
Sahil Sharma (2)
Rahul Sahay (2)
Harpreet Singh (2)
Abhishek Jaiswal (2)
Vinod Kumar (2)
Ashish Jaiman (2)
Ayush Gupta (1)
Vishal Joshi (1)
Ashutosh Singh (1)
Prasoon (1)
Hari Lakkakula (1)
C# Curator (1)
Pankaj Kumar Choudhary (1)
Craig Breakspear (1)
Mukesh Kumar (1)
Sandeep Singh Shekhawat (1)
Shees Abidi (1)
Pankaj Patel (1)
Mayur Gujrathi (1)
Jagannath Sethi (1)
Vijay Kumari (1)
Arindam Dawn (1)
Annathurai Subbaiah (1)
Naresh Beniwal (1)
Hammad Maqbool (1)
Navin Prakash (1)
Usama Hafeez (1)
Erika Ehrli (1)
Debendra Dash (1)
Pramod Singh (1)
Prakash Tripathi (1)
Rikam Palkar (1)
Abhishek Dubey (1)
Abubackkar Shithik (1)
Vithal Wadje (1)
Gaurav Jain (1)
Kapil Gaur (1)
Farhan Ahmed (1)
Sourabh Mishra (1)
Habibur Rony (1)
Yogendra Kumar (1)
Jatin Malik (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 Kumar (1)
Iftikar Hussain (1)
Sharad Gupta (1)
Satyapriya Nayak (1)
Niranjan Kumar Kandaswamy (1)
Vikas Mishra (1)
Mahadesh Mahalingappa (1)
Giuseppe Russo (1)
Related resources for abstract class
No resource found
C# Abstract Class with Examples
7/17/2024 10:28:16 AM.
Explore the fundamentals of C# abstract classes through clear examples and detailed explanations. Learn how abstract classes facilitate code reusability and polymorphism in object-oriented programming
Interface Vs Abstract Class
7/10/2024 3:44:36 PM.
This article delves into the differences between interfaces and abstract classes in object-oriented programming. It explores their roles in languages like Java and C#, highlighting key concepts such a
Sealed Class VS Abstract Class with Real-time Cases
7/10/2024 12:33:19 AM.
This article explores the differences between sealed and abstract classes, providing real-time case studies to illustrate their use in software development. Learn how sealed classes restrict inheritan
Introduction to Model View Control (MVC) Pattern using C#
6/18/2024 8:42:40 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
Hide Base Class Members in C# .NET with new Keyword
5/30/2024 7:05:09 AM.
In C# .NET, the new keyword allows derived classes to hide members of a base class. This technique, known as member hiding or shadowing, is used to define a new implementation for a member without ove
Abstract Class in .NET C#: Syntax, Usage and Example
5/13/2024 5:01:47 AM.
Abstract classes in .NET C# provide a blueprint for other classes to inherit from. They contain abstract methods that must be implemented by derived classes. Learn syntax, usage, and see examples to u
Exploring Interface and Abstract Class in C# Programming
4/30/2024 10:07:25 AM.
In C#, both interfaces and abstract classes are powerful tools for designing flexible and reusable code. Let's delve into the concepts of interface and abstract class, explore their differences, a
Learn about Static Class in C#
4/16/2024 4:43:10 AM.
This article explores the concept of static classes in C#, detailing their characteristics, usage, and limitations. It covers static class setup, static class features, static method usage, and depend
Abstract Class vs Interface
3/28/2024 10:36:35 AM.
Abstract classes provide a partial implementation with the option for subclasses to extend, while interfaces define a contract without implementation, allowing multiple inheritance. Abstract classes s
Difference Between Sealed Class & Abstract Class in C#
3/28/2024 10:16:55 AM.
In object-oriented programming (OOP) with C#, classes serve as the foundation for building robust and scalable applications. Two important concepts in class design are sealed classes and abstract clas
What is the Abstract Class in C#?
3/27/2024 6:45:19 AM.
The abstract class is a special privileged class in the C#, this will provide a blueprint for the derived classes with a setup of rules and instructions to be derived. The abstract class contains both
Choosing Between Abstract Classes and Interfaces in C#
12/2/2023 12:38:47 PM.
Making the Right Design Choice between Abstract Classes and Interfaces in C#.
Abstract Class and Abstract Methods
11/20/2023 10:41:10 AM.
In this article I will explain abstract class and abstract methods. An abstract class in C# is a class that is declared abstract. It cannot be instantiated on its own; rather, it is meant to serve as
Abstract Classes In C#
11/2/2023 11:56:15 AM.
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
How to implement Multiple Inheritance in C#
10/11/2023 12:42:33 PM.
Learn how to implement multiple inheritance in C#. Inheritance is one of the key characteristics of an object oriented programming language.
Types Of Polymorphism
10/5/2023 11:33:21 AM.
In this article you will learn about Polymorphism and types of polymorphism.Polymorphism is one of the fundamental principles in object-oriented programming (OOP). It allows objects of different class
When to Use Interface And When To Use Abstract Class - Part One
10/3/2023 10:28:50 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.
How To Use Abstract Class, Abstract Method, And Abstract Property In C#
9/20/2023 10:48:45 AM.
In this article, we look at what an abstract class is, its method and properties, and how to use them.
Abstract Class, Interface and relation to Method Overriding and Method Hiding in C#
9/6/2023 11:40:37 AM.
In my this article I present a way to easily understand Abstract Types, Interfaces and their difference with Overriding and Hiding.
Abstract Class Vs Interface in C#
9/6/2023 11:14:03 AM.
n C#, both abstract classes and interfaces are used to define contracts for classes, ensuring that they adhere to a certain structure or behavior. However, they serve different purposes and have disti
Interfaces In .NET
9/2/2023 8:32:04 AM.
In .NET, interfaces are a fundamental concept that allows you to define a contract that classes must adhere to. They are used to define a set of method signatures (and properties) that any class imple
What is Abstract Class in C#?
8/25/2023 7:04:49 AM.
Abstract classes serve as base classes for derived classes. They can't be instantiated directly and encompass both abstract and non-abstract members. They're useful when default functionality
Difference Between Abstract Class And Interface In Java
8/24/2023 10:07:53 AM.
Abstract Class and Interface are a core part of the Java programming language. Abstract class and interface are used in Java to archive Abstraction.
Understanding Angular Injection Tokens
6/20/2023 6:53:30 AM.
Angular's dependency injection (DI) system manages dependencies in a modular, scalable manner. Injection Tokens are unique identifiers used by the system to resolve dependencies flexibly. They ena
C# Interface Based Development
6/8/2023 8:26:00 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
Abstract Class And Abstract Method In C#
6/7/2023 10:00:16 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.
Abstract Class In C#
6/6/2023 10:00:33 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.
Difference between abstract class and interface in C#
6/6/2023 9:06:03 AM.
In this article I have explained the difference between Abstract Class and Interface with some examples and some information about an Interface.
What is Abstract Keyword in java
4/22/2023 4:44:04 PM.
In this article, you will learn about What is abstract Keyword in Java
When To Use Abstract Class In C#.NET
2/21/2023 4:42:43 AM.
In this article, you will learn Realtime scenario when to use abstract class in C#.NET
C# In Practice - Building Tech Support App
12/1/2022 10:25:39 AM.
In this article, you will learn about simple app building for beginners in C#.
Abstract Classes And Methods
8/23/2022 9:09:24 AM.
This is a detailed analysis of Abstract classes and methods in C# with some concrete examples.
Elegant JavaScript - How Do They Write It?
8/8/2022 10:31:41 PM.
In this article, you will learn about Elegant JavaScript.
Get Started With OOPS In Flutter 😎
7/13/2022 11:52:50 AM.
Here cover some interesting topics like inheritance, abstract classes and computed properties.
Object-Oriented Programming Simplified With C# And .Net 5
6/28/2022 4:40:35 PM.
This article is about the general concepts of Object-Oriented Programming with examples in c sharp programming language.
OOPS Concepts and .NET Part 2: Inheritance, Abstraction, & Polymorphism
1/12/2022 11:36: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 fi
C# and ASP.Net Interview Question and Answers
1/12/2022 10:47:24 AM.
In this article I will demonstrate C# and ASP.NET Interview Question and Answers.
When To Use Abstract Class and Interface In Real Projects
11/18/2021 10:03:40 AM.
In this article, you will learn when to use an abstract class and an interface in real projects.
What Is The Difference Between Interface And Abstract Class And When To Use It
9/14/2021 1:15:31 PM.
Today, I am going to explain about abstract class and interface, When to use interface and abstract class and what is the difference between them. So, let us start.
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.
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.
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
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.
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.
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
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.
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.
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.
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.
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.
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.