Related resources for base class
  • Polymorphic serialization using System.Text.Json4/12/2024 5:50:15 AM. Polymorphic serialization is the process of serializing and deserializing objects of different types that share a common base type. This allows us to preserve the specific type information of each obj
  • What is the Virtual Method in C#?3/26/2024 9:03:13 AM. In this article, we will provide an explanation about the virtual method with consise answer, which is help full for the people who wants to attends the C# with opps interview.
  • Differentiate Hiding And Overriding9/12/2023 11:40:40 AM. As most of you know hiding and overriding are two main features based upon inheritance, which is one of the pillars of the OOP. Using these we can redefine a member of the base class in a derived clas
  • How to Use SynchronizationContext to Post Messages9/6/2023 11:18:43 AM. SynchronizationContext is a class in .NET that provides a way to post and execute code on a specific context, typically associated with a UI thread or a specific synchronization context. It's com
  • Learn All About Inheritance in C#9/5/2023 7:05:38 AM. Inheritance is a fundamental concept in object-oriented programming (OOP) and is widely used in C#. It allows you to create a new class that is based on an existing class, inheriting its attributes an
  • Creating Strongly Typed Custom Collections in C#11/17/2022 6:36:55 AM. In this article, author shows you how to create and use strongly typed custom collections.
  • Ambiguity Resolution In CPP Programming4/13/2022 1:07:32 PM. Ambiguity refers to the condition that usually represents several interpretations from a single context. Coming to our technical stage, this will be followed in the concept of Inheritance mainly we sa
  • Changes To Base Class Library With .NET Framework 4.61/14/2021 12:44:42 PM. In this article we will learn about the changes in the Base Class Libraries.
  • Understanding C# Inheritance In A Better Way👍7/27/2019 11:59:51 PM. In this video, we will see a practical explanation of C# Inheritance. We will understand what C# inheritance is and how we can relate it to natural inheritance. We will learn about related concepts li
  • How to call base class constructor from derived class in C#5/11/2015 2:03:50 AM. This Video provides the details about what will happen when we create an object for derived or sub class, which constructor of base class will be invoked by default, how to invoke a specific base class constructor, how to perform some manipulations for the parameter value when we pass the arg. from derived class to base class etc.
  • Decorator Class in WPF3/26/2014 4:05:45 PM. This article explains the decorator class that is a simple base class of WPF layout controls.
  • Best Practices of Compact Framework11/12/2013 11:19:44 AM. This shares a few recommendations for use in our day to day development of Compact Framework applications.
  • Leveraging Base Classes in VB.NET11/10/2012 2:47:58 AM. This article shows you how to leverage the power of VB.Net Financial base class library using C#. The .Net unify class architecture model allows .Net languages to leverage class libraries implemented in other class libraries.
  • Inheritance in Object-oriented Programming in VB.NET11/9/2012 11:39:05 AM. In this article, I will explain Inheritance in Object-Oriented Programming.
  • Working with Controls using C# in windows programming10/20/2012 6:51:39 AM. In this article I will explain you about Working with Controls using C# in windows programming.
  • Understanding .NET Framework at a glance10/1/2012 8:34:58 AM. In this article we are going to look at Microsoft .NET Framework. This is the newly established software development environment which helps developers to develop applications quickly and gives optimum, efficient, scalable, performance oriented applications in different languages like Visual Basic .NET, C#, ASP .NET, and Jscript .NET.
  • Implementing Inheritance (Base-Class/Derived-Class) model in WPF.9/29/2012 9:50:33 AM. This article shows how to implement inheritance modal in WPF and a practical scenario to get a feel of concept.
  • How To Handle Database and Buss.Logic in MVC 3 If the Requirements Change?11/12/2011 4:38:32 PM. In this article, let's clearly focus on how to act accordingly when the client requirement changes towards the working or produced project. So let's add a new field in this demonstration and we will see what the key steps that we need to take to handle this situation.
  • Abstract Base Class Polymorphism8/30/2007 1:01:18 AM. Refactoring the program code from my Polymorphism, Up-casting and Down-casting article to use an abstract base class.
  • Database Explorer-IV8/31/2006 5:32:24 AM. This is version IV of the Database Explorer, which include the support for Access Database with SQL Server.
  • 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.
  • Implementing Delegates in C# : Part 212/26/2005 4:35:19 AM. This is second part of Timothy's Delegates in C# series...
  • An insight into Code Reusability and COM Interoperability : Part I12/23/2005 5:20:31 AM. Code reusability is the art of using existing code to achieve better productivity and ease of maintenance. The concept of reusability is not new. Its existence has been evident since the evolution of mankind.
  • Microscopic Discussion in Classes12/21/2005 2:16:54 AM. This article is going to take a microscopic view of classes, in terms of Inheritance(I) , Multiple Inheritance(MI) and Circular Base Classes (CBC).