Related resources for object-oriented
  • Understanding Sealed Classes in C#7/22/2024 8:27:05 AM. Sealed classes in C# are a vital concept in object-oriented programming, preventing other classes from inheriting them. This ensures a secure and stable class hierarchy by stopping further extension.
  • Encapsulation, Inheritance, and Polymorphism in C#7/18/2024 10:38:48 AM. In this article, we will learn how to encapsulate data for security, leverage inheritance for code reuse, and implement polymorphism to create flexible and scalable applications.
  • Object Inheritance and Object Composition in Object Oriented Programming 7/12/2024 10:28:38 AM. This content delves into two fundamental concepts of Object-Oriented Programming (OOP): object inheritance and object composition. It explores how inheritance enables class hierarchies and polymorphis
  • JavaScript – Prototypal Inheritance – Illustrated7/12/2024 7:06:15 AM. JavaScript – Prototypal Inheritance – Illustrated" is an in-depth guide that explores the concept of prototypal inheritance in JavaScript. This illustrated tutorial simplifies complex topics like
  • 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
  • How to use the Abstract Factory Pattern in C# with the Interface Pattern7/4/2024 10:16:09 AM. Learn how these design patterns improve flexibility, scalability, and maintainability in software development by exploring the Abstract Factory Pattern and Interface Pattern in C# with Ziggy Rafiq. Be
  • Mastering Nested Types in C#: Best Practices and Common Pitfalls7/3/2024 6:31:39 AM. Nested types in C# allow developers to define a type within another type, such as a class, struct, interface, enum, or delegate. This feature helps in organizing related types, encapsulating implement
  • Design Patterns and Advantages of Different Design Patterns7/1/2024 6:42:39 AM. Design patterns are recurring solutions to common problems in software design. They provide a template for solving issues in a particular context. The advantages of using different design patterns inc
  • Exploring Record Classes in Java6/28/2024 9:03:23 AM. Discover the simplicity and power of record classes in Java with our comprehensive guide. Explore how Java's record classes, introduced in Java 14, streamline the creation of immutable data struct
  • Types Of Relationships In Object Oriented Programming (OOPS)6/24/2024 9:01:53 AM. This article explores the key relationships in Object-Oriented Programming (OOP), including inheritance, association, composition, and aggregation. These relationships enable code reuse and flexibilit
  • Methods and Properties in C#6/23/2024 9:46:10 PM. In C#, methods and properties are fundamental constructs used to define the behavior and state of objects. Understanding how to create and use methods and properties is essential for effective C# prog
  • What Are Object-Oriented Databases And Their Advantages6/12/2024 10:23:20 AM. In this article, you will learn what object-oriented databases are what are their advantages.
  • Overloading vs Overriding in Java6/12/2024 5:17:59 AM. Method overloading and overriding in Java, essential OOP concepts for code reusability and polymorphism. Overloading allows multiple methods with the same name but different parameters while overridin
  • OOPS Interview Questions - C#6/7/2024 10:31:18 AM. Here is a list of the most popular OOPS interview questions and answers explained. These OOPS interview questions are for both beginners and professional C# developers.
  • Implementing Repository Pattern And Dependency Injection In ADO.NET Using Generics In C#6/4/2024 9:49:21 AM. Learn how to implement design patterns in an object-oriented paradigm to create generic solutions. This guide covers a practical example where a web application interacts with a database using the rep
  • Understanding SOLID Principles in .NET Core6/2/2024 10:05:10 AM. SOLID principles are a set of five design principles in object-oriented programming that aim to make software designs more understandable, flexible, and maintainable. In this blog post, we’ll explore
  • Learn Object Oriented Programming Using C#: Part 25/24/2024 8:57:02 AM. Discover advanced Object-Oriented Programming techniques in C# with our comprehensive Part 2 guide. Master inheritance, polymorphism, encapsulation, and more. Learn to create robust classes, utilize i
  • Learn Object Oriented Programming Using C#: Part 35/24/2024 8:56:44 AM. Part 3 of our tutorial series delves deeper into Object Oriented Programming with C#. Explore advanced concepts like inheritance, polymorphism, and encapsulation. Master class hierarchies, method over
  • Learn Object Oriented Programming Using C#: Part 45/24/2024 8:56:29 AM. Delve into essential Object-Oriented Programming (OOP) concepts with C# in Part 4. Learn about encapsulation, properties, constructors, and methods. Explore access modifiers and best practices for cod
  • Learn Object Oriented Programming Using C#: Part 55/24/2024 8:55:43 AM. Delve deeper into Object-Oriented Programming with C# in Part 5 of our series. Explore advanced concepts like inheritance, polymorphism, and encapsulation, empowering you to build robust and efficient
  • Learn Object Oriented Programming Using C#: Part 65/24/2024 7:28:34 AM. Explore advanced concepts in Object-Oriented Programming (OOP) with C# in Part 6 of this series. Learn about inheritance, polymorphism, interfaces, and abstract classes. Understand method overriding,
  • Learn Object Oriented Programming Using C#: Part 75/24/2024 7:26:51 AM. Delve deeper into Object-Oriented Programming with C# in Part 7 of our comprehensive tutorial series. Explore advanced concepts like inheritance, polymorphism, and more. Enhance your coding skills and
  • Learn Object Oriented Programming Using C#: Part 85/24/2024 7:17:07 AM. Dear reader's, this article is the fourth and last pillar of OOP. It's confusing for the beginners of OOP. So we provide an example in very simple words.
  • Understanding the SOLID Principles in Object-Oriented Design5/18/2024 6:36:28 AM. The SOLID principles are five foundational design guidelines proposed by Robert C. Martin to create maintainable, flexible, and understandable object-oriented software, aiding in adaptability and ease
  • 6 Important .NET Concepts5/17/2024 10:37:22 AM. This article will explain 6 important concepts, Stack, heap, value, ref, boxing, and unboxing. Explore the essence of .NET through six pivotal concepts.
  • Decorator Design Pattern In Dart/Flutter5/16/2024 9:27:33 AM. Decorator Design Pattern in Dart/Flutter, a flexible and reusable solution for extending functionality in object-oriented software. Learn through real-world examples, understand when to use it, and be
  • Facade Design Pattern In Dart/Flutter5/16/2024 9:24:03 AM. Explore the Facade Design Pattern, a GoF design pattern that simplifies interactions with complex systems. Learn its definition, when to use it, and how to implement it in Dart/Flutter with a practica
  • Object Oriented Programming Using C#: Part 95/13/2024 11:52:47 AM. Explore advanced concepts in C# Object-Oriented Programming (OOP) in this ninth installment. Dive into topics like inheritance, polymorphism, encapsulation, and more. Learn how to leverage these princ
  • Composite Design Pattern Using Python5/6/2024 11:37:22 AM. A composite design pattern is a structural design pattern. It allows developers to create multiple nested objects of the same type to complete one single system hierarchy.
  • Exploring Interface and Abstract Class in C# Programming4/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
  • Adapter Design Pattern In Flutter4/25/2024 9:50:09 AM. Explore the Adapter Design Pattern, a popular structural design pattern in software development. Learn its definition, real-world examples, appropriate use cases, potential pitfalls, and more.
  • The "this" Keyword in C#3/28/2024 10:38:53 AM. The "this" keyword in C# is a reference to a class or a struct itself. In this article, you'll learn what the C# "this" keyword is, and how and when to use the "this"
  • Singleton Design Pattern In Flutter3/21/2024 9:25:49 AM. Learn how and when to use Singletons, implement them effectively, and explore their advantages and limitations. This article also includes a sample implementation using the shared_preferences package
  • Abstract Factory Design Pattern In Flutter3/21/2024 9:25:33 AM. Learn about the Abstract Factory design pattern in Flutter for creating platform-specific widgets. This pattern centralizes the creation of related objects, making it easier to manage and work with m
  • Factory Method Design Pattern In Flutter3/21/2024 9:25:05 AM. Factory Method design pattern! Learn how to create objects dynamically, improve code flexibility, and build platform-specific UIs (like buttons) with ease. Explore a practical payment gateway example
  • Introduction to Design Patterns in Flutter3/21/2024 9:12:16 AM. Explore the importance of design patterns in software development. Learn about different types of patterns, their benefits, and how they can improve code efficiency, readability, and maintainability.
  • Decorator Pattern in C# - 3 versions3/20/2024 10:17:27 AM. In this article, we will explore the versatile Decorator Pattern in C#, presented in 3 different versions. Enhance your understanding of object-oriented design with this powerful pattern, offering fle
  • .NET internals: Learning Object-Oriented .NET IL3/19/2024 11:12:50 AM. .NET IL, or Intermediate Language, serves as a bridge between high-level programming languages and machine code. This article delves into object-oriented .NET IL concepts with detailed explanations an
  • Simulating Multiple Inheritance in C#: Part I3/19/2024 6:16:39 AM. In this article, we will explore techniques for simulating multiple inheritance in C#. Discover how to leverage interfaces, composition, and class hierarchies to mimic this powerful feature, enhancing
  • Object Oriented Programming In Java2/29/2024 4:57:24 AM. Object-oriented programming is the basic term of any programming language like Java. Object-Oriented Programming (OOP) in Java, covering concepts like Class, Object, Inheritance, Abstraction, Encapsul
  • Polymorphism Concept in Object-Oriented Programming2/12/2024 6:20:17 AM. What do you mean by polymorphism? Polymorphism is explained with C# examples, Polymorphism, a concept extending beyond programming, is illustrated in everyday scenarios. Electrical outlets serve as an
  • What is Memento Pattern in C#?2/9/2024 5:57:36 AM. In this article, we will learn aboutThe Memento Pattern in C# enables capturing and restoring an object's state. It's crucial for implementing undo/redo functionalities and managing state chan
  • Override Basic Object of Python2/6/2024 10:09:49 AM. This article introduces the concept of overriding methods in Python, focusing on the str and repr methods of the base object class. It explains how developers can customize the output when printing ob
  • Reading properties of an object in C#11/26/2023 5:47:50 AM. This article explores two ways to read the properties of an object in C# without knowing its type at compile time: reflection and dynamic keyword. Reflection involves inspecting and manipulating metad
  • How to Choose Between Inheritance and Composition?11/16/2023 6:41:17 AM. When to use composition over inheritance and vice versa as a coding best practice.
  • C# Artificial Intelligence (AI) Programming: A Basic Object Oriented (OOP) Framework for Neural Networks11/15/2023 11:39:44 AM. A Neural Network is an Artificial Intelligence (AI) methodology that attempts to mimic the behavior of the neurons in our brains. In this article, we’ll be building a basic framework for AI Neural Net
  • Liskov Substitution Principle (LSP) in .NET 6 Core11/15/2023 9:13:04 AM. As a burgeoning developer delving into the SOLID principles, understanding the Liskov Substitution Principle (LSP) is pivotal for crafting robust and maintainable code. In this article, we'll demy
  • Interface Segregation Principle in Object-Oriented Design11/10/2023 5:36:10 AM. This article explains about Interface Segregation Principle (ISP), and its application in C# is clear and well-illustrated through the example of a shape drawing application. Breaking down a generic I
  • The Third Pillar Of Object-Oriented Programming - Polymorphism:10/30/2023 10:26:15 AM. In the last part of this series you will see the third pillar of object-oriented programming (polymorphism); you will see how the polymorphism gives you the ability to treat related objects in the sam
  • Simplest Way To Learn Object Oriented Programming10/6/2023 7:18:47 AM. This article provides the sImplest way to learn Object Oriented Programming.
  • Building Flexible And Future-Proof C# Applications With Examples9/27/2023 6:11:38 AM. This article explores the Open Closed Principle (OCP), one of the SOLID principles of object-oriented design, and how it can help developers build flexible and future-proof C# applications. By adherin
  • Inheritance In C#9/25/2023 10:20:01 AM. Inheritance is a powerful feature of Object Oriented Programming languages. Using inheritance you create base classes that encapsulate common functionality. The base class is inherited by derived clas
  • Difference Between Shadowing And Overriding In OOP Using C#9/24/2023 5:40:36 PM. In this article, you will learn about the difference between Shadowing and Overriding in OOP using C# Programming example.
  • Field vs Property in C#9/18/2023 4:20:01 PM. In C# object-oriented programming (OOP), distinguishing between "fields" and "properties" is fundamental. Fields directly store data, typically with private or protected access mod
  • Mapping ViewModel To Model Using Implicit Conversion Operator In C#9/18/2023 9:08:46 AM. Mapping a ViewModel to a Model in C# using an implicit conversion operator is a technique used to simplify the process of transferring data between these two related classes. ViewModels are typically
  • Dependency Injection (Property Injection) In C#9/14/2023 9:58:58 AM. In this article we are going to discuss Property Injection. Dependency injection (DI) is a design pattern used in C# and other object-oriented programming languages to achieve better code organization
  • Programming Methodologies9/14/2023 6:56:54 AM. This article just provides an overview of some programming methodologies and we will see OOP concepts in greater details.
  • Object-Oriented Programming in JavaScript9/11/2023 7:15:17 AM. This article explores JavaScript's Object-Oriented Programming (OOP) fundamentals, covering object creation, constructor functions, methods, inheritance, and ES6 classes, enabling modular and main
  • Pillar of OOPS (Object Oriented Programming)9/6/2023 8:08:58 AM. This article explores the fundamental pillars of Object-Oriented Programming (OOP): Encapsulation, Abstraction, Polymorphism, and Inheritance. It provides detailed explanations and real-world examples
  • Private Constructor - C#8/28/2023 9:38:28 AM. In this article, you will learn about Private Constructor - C#.In C# and many other object-oriented programming languages, a private constructor is a constructor that is declared with the "privat
  • Random Class in Java8/7/2023 9:55:58 AM. Random class is used to generate pseudo-random numbers in java. An instance of this class is thread-safe. The instance of this class is however cryptographically insecure.
  • Type Casting in Java8/7/2023 8:57:01 AM. Typecasting is a basic concept of Java programming language. Assigning a value of one type to a variable of another type is known as Type Casting in Java.
  • Comparision of Java With Other Programming Languages8/3/2023 9:32:00 AM. Java is the most popular programming language in the world. Learn what is the difference between Java and C++, Java and C#, Java and C and other languages.
  • Object Relational Mapping (ORM) Using NHibernate - Part 2 of 87/31/2023 5:41:13 AM. Object-Relational Mapping (ORM) is a programming technique that allows developers to interact with a relational database using object-oriented programming paradigms. It bridges the gap between the obj
  • Naming Convention in Java5/18/2023 4:59:20 AM. This article is all about the Naming convention of the Java programming language.
  • Object-Oriented Programming in Kotlin5/16/2023 8:39:38 AM. This article will explain the fundamentals of OOPs in Kotlin.
  • Differences Between Object Oriented Development(OOD) And Service Oriented Architecture(SOA)2/16/2023 10:37:39 AM. This article in deep explains the differences between Object Oriented Development(OOD) and SOA(Service Oriented Architecture).
  • Java Basics2/15/2023 12:10:49 PM. Java is a popular general-purpose programming language and computing platform. It is a high level, class-based, and object-oriented programming language. Java runs on multiple platforms. It means that
  • Interface Class In C#.NET2/13/2023 4:47:34 AM. The traditional concept and definition of interface class never helped me to understand when should I use interface class in C#.NET so I use this example to clear my concept
  • A Complete Guide To Object Oriented Programming In C#2/13/2023 4:00:51 AM. In this article, we will learn how to write code for Classes and Objects, Constructors and Destructors, Function Overloading, Encapsulation, Inheritance, Interface, and Polymorphism in C# and .NET.
  • Object Oriented Programming Concepts in C# (2023)2/12/2023 4:44:58 AM. This article defines OOPs concepts in C#. The key OOPs contents are abstraction, encapsulation, inheritance, and polymorphism. Learn how to implement OOPs concepts in C# and .NET.
  • Encapsulation In C#11/30/2022 9:39:07 AM. In this article you will learn about Encapsulation in C#.
  • Inheritance Vs Interfaces11/22/2022 9:22:39 AM. This article describes the advantages of using interfaces over inheritance and how to create a plug and play component in .NET using an interface.
  • Object Oriented Programming Using C#: Part 1011/18/2022 5:50:57 AM. There is a very basic difference between encapsulation and abstraction for beginners of OOP. They might get confused by it. But there is huge difference between them if you understand both the topics
  • Elegant JavaScript - How Do They Write It?8/8/2022 10:31:41 PM. In this article, you will learn about Elegant JavaScript.
  • Introduction of Classes in Flutter 3 😜7/11/2022 6:09:34 PM. In this article, we learn about classes in a flutter
  • Object-Oriented Programming Simplified With C# And .Net 56/28/2022 4:40:35 PM. This article is about the general concepts of Object-Oriented Programming with examples in c sharp programming language.
  • Association, Aggregation and Composition1/12/2022 10:10:41 AM. Association, aggregation and composition terms represent the relationship between the objects. They are very basic stuff of Object oriented programming.
  • C# and its Features1/12/2022 9:25:32 AM. C# is a modern, type safe programming language, object oriented language that enables programmers to quickly and easily build solutions for the Microsoft .NET platform.
  • Introduction Of ASP.NET Unique Architecture (AUA)11/2/2021 9:21:53 AM. AUA ( Asp.Net Unique Architecture ) Framework, you can easily have better, faster, and more orderly and focused coding. This framework is based on new and up-to-date concepts, structures and architect
  • Accessing Protrack API (An Object-Oriented Approach)2/12/2021 6:18:50 AM. Protrack is one of the well-known web-based GPS tracking softwares, and today we will learn how to access its API using C# and .NET Framework. We will create a little wrapper around the API and use it
  • PERST: A Simple, Fast, Convenient Object Oriented Database11/1/2020 11:18:49 PM. PERST is a simple Object-Oriented Database implemented with pure C-Sharp and Java implementations.
  • Introduction To SOLID Principles9/24/2020 8:39:11 AM. In this article, you will learn about SOLID Principles.
  • Why Does An Abstract Class Needs A Constructor?6/20/2020 6:44:39 AM. In this article, you will learn about why an abstract class needs a constructor.
  • Purpose Of Abstract Class In Object Oriented Programming6/20/2020 6:07:51 AM. We have been using abstract class for a while. Let's understand why it was actually introduced.
  • Operator Overloading In C++ For Students And Beginners5/27/2020 5:57:26 AM. Operator overloading is one of the best features of C++. By overloading operators, we can give them additional meaning.
  • SOLID Principles In C# - Single Responsibility Principle5/26/2020 12:41:29 PM. C# is an object-oriented programming language. These days whenever you talk about object-oriented programming you hear the acronym, SOLID. These are five design principles introduced by Michael Feathe
  • 😇SOLID Design Principles Simplified With UML5/11/2020 11:19:27 AM. Frequently asked interview question. & good programming practice.
  • Simplify JavaScript Object Oriented Programming Model - Part 35/6/2020 2:34:14 PM. This article introduces the concept of mutable and immutable in JavaScript.
  • Design Patterns In .NET5/5/2020 9:35:07 AM. So basically, what are design patterns? We can define design patterns as proven techniques to achieve certain tasks. They give us a basic template to design our application using templates that have p
  • Simplify JavaScript Object Oriented Programming Model: Part 25/5/2020 2:48:17 AM. This article provides a simplified explanation of the JavaScript Object Oriented Programming Model.
  • Simplify JavaScript Object Oriented Programming Model: Part 15/5/2020 1:45:15 AM. In this article we learn about the JavaScript Object Oriented Programming Model.
  • Object Oriented Programming JavaScript - ES65/4/2020 11:26:12 AM. Learning OOP JavaScript-ES6 will significantly help you become a better developer. Concepts such as the class declaration, constructors, getter and setter, methods, static properties, static method, a
  • Object Oriented Programming in JavaScript: Part 24/30/2020 12:47:36 PM. This article explains methods in JavaScript classes for the purpose of Object Oriented Programming in JavaScript.
  • Facade Design Pattern4/21/2020 4:26:38 AM. You may have heard of the big ball of mud class, It's too big: encapsulating a bunch of methods unnecessarily. It misses the point of object-oriented programming altogether. The facade design patt
  • Object Oriented Design Principles2/14/2020 8:54:02 PM. In this article we will go beyond the pillars of Objected Oriented Programming, We will talk about Object Oriented design principles.
  • Diving Into Python - Chapter 42/13/2020 5:00:11 AM. This article is the fourth of this series. In this am providing the basics of Python scripts by comparing them with several other object oriented languages.
  • Object Oriented Programming In Python🚀 With Examples💡 - Part One2/12/2020 5:18:00 AM. In this article, I will show you the fundamentals of Python OOPs concepts with simple examples.
  • Is Python Object Oriented?2/12/2020 3:56:46 AM. This article will describe whether Python is Object Oriented or not. You will get to know about the OOPS concepts used in Python with details.
  • Diving Into Python: Chapter 122/5/2020 12:57:20 AM. In this article series you will learn Python step-by-step and easily.