Resources  
  • Polymorphism Concept in Object-Oriented ProgrammingFeb 12, 2024. 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 analogy, supporting diverse devices—an example of polymorphism manifesting in real life.
  • Interface Segregation Principle in Object-Oriented DesignNov 10, 2023. 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 IShape interface into more specific interfaces like IDrawableShape, IResizableShape, and IRotatableShape aligns well with the principles of ISP, leading to a more modular and maintainable codebase.
  • What Are Object-Oriented Databases And Their AdvantagesSep 05, 2019. In this article, you will learn what object-oriented databases are what are their advantages.
  • Accessing Protrack API (An Object-Oriented Approach)Aug 26, 2019. 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 to track GPS devices in a target account. This lesson will show you some of the object-oriented concepts in action.
  • Introduction to Object-Oriented ProgrammingMay 21, 2014. This article is a brief introduction to OOP. The basic building blocks of object-oriented programming are the class and the object. A class acts as a blueprint/template to create the instances/objects. This blueprint/template describes the state and behaviour the state and behaviour for all the objects of the class.
  • Inheritance in Object-oriented Programming in VB.NETNov 09, 2012. In this article, I will explain Inheritance in Object-Oriented Programming.
  • The Third Pillar Of Object-Oriented Programming - Polymorphism:May 29, 2008. 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 same way.
  • The Second Pillar of Object-Oriented Programming - InheritanceMay 22, 2008. In this part of the object-oriented programming series I will introduce the second pillar of object oriented programming (inheritance); you will see how to use inheritance to create classes based on existing classes.
  • The first pillar of object-oriented programming - EncapsulationMay 09, 2008. In this article we will start with Encapsulation, the first pillar of OOPS, you will learn the benefits of encapsulation and why to use it, you will learn how to enforce encapsulation by using (accessor and mutator) and by using properties.
  • Object-Oriented Programming in JavaScriptSep 11, 2023. This article explores JavaScript's Object-Oriented Programming (OOP) fundamentals, covering object creation, constructor functions, methods, inheritance, and ES6 classes, enabling modular and maintainable code in web development.
  • Object-Oriented Programming in KotlinMay 16, 2023. This article will explain the fundamentals of OOPs in Kotlin.
  • Object-Oriented Programming Simplified With C# And .Net 5Jun 28, 2022. This article is about the general concepts of Object-Oriented Programming with examples in c sharp programming language.
  • .NET internals: Stack-Oriented .NET ILMar 16, 2024. Understanding .NET IL (Intermediate Language) is crucial for developers to comprehend how code interacts with the .NET Framework. While not typically written directly, it offers insights into compilation processes.
  • Sort Array Directive in Vue.jsMar 13, 2024. Custom directives in Vue.js empower developers to extend HTML elements' functionality, enabling direct manipulation of the Document Object Model (DOM) within Vue applications. This example demonstrates creating a directive to sort an array based on a specific property.
  • Abstract Factory Design Pattern In FlutterMar 12, 2024. 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 multiple factory methods.
  • JavaScript WeakMap in ES8 and TypeScriptMar 11, 2024. WeakMap object stands out as a specialized entity, closely related to the Map object but with a unique twist. In this article, we'll unravel the syntax, characteristics, and methods of the JavaScript WeakMap, shedding light on its applications. How to harness its capabilities in ES8 and TypeScript.
  • Factory Method Design Pattern In FlutterMar 06, 2024. 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 and overcome common challenges.
  • A Guide To Crafting Immutable Objects With C# 10's Init-Only PropertiesMar 06, 2024. Discover how C# 10's init-only properties empower developers to craft immutable objects with precision, enhancing code readability and maintainability. In this article, Ziggy Rafiq demonstrates how you can use this powerful feature to create robust and predictable software.
  • Mastering Object Creation in C#Mar 04, 2024. Learn to create objects in C# step-by-step. Define classes, instantiate objects, access members, use constructors, and explore static constructors—master object creation for robust C# applications.
  • A simplified approach to serializing and deserializing objects in C# 10Mar 04, 2024. This comprehensive guide teaches how to streamline data interchange processes efficiently using C# 10 Records. Authored by Ziggy Rafiq.
  • Introduction to Design Patterns in FlutterMar 02, 2024. 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. Ideal for developers seeking to enhance their coding practices.
  • Why we should learn C#?Feb 26, 2024. This article explores the reasons behind choosing C# over other languages, delving into its evolution, key features like object orientation, lambda expressions, LINQ, generics, and its adaptability for modern development needs.
  • Learn about Reflection in C#Feb 13, 2024. Reflection is a powerful feature in C# that enables you to inspect and interact with types, assemblies, and objects at runtime. It provides a way to dynamically discover and use information about types, invoke methods, and access fields and properties.
  • What is Memento Pattern in C#?Feb 09, 2024. 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 changes efficiently in object-oriented systems, enhancing code maintainability and flexibility.
  • Understanding the Factory Pattern in .NET CoreFeb 06, 2024. Explore the power of the Factory Pattern in software design, a creational pattern enhancing flexibility. Delve into a real-world example using .NET Core for a car manufacturing system.
  • Override Basic Object of PythonFeb 06, 2024. 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 objects by overriding these methods.
  • Understanding "obj" and "bin" Directories in ASP.NET Core Web APIFeb 05, 2024. These directories are needed because the C# compiler and linker require intermediate files to be generated during the build process to produce the final output file. The "obj" directory contains these intermediate files, which are needed to link and optimize the final executable or library file.
  • What Are Primary Constructors in C# 12?Jan 31, 2024. C# 12 has a number of new features, one of which is Primary Constructors, which offer a simplified and more concise method of constructing objects in C#.
  • JavaScript Destructuring: Arrays, Functions, and ObjectsJan 31, 2024. Destructuring is a powerful feature in JavaScript that allows you to extract values from arrays, objects, and function parameters easily.
  • Set Object in ES7 and TypeScriptJan 16, 2024. The JavaScript Set object is a versatile tool for managing collections with unique values, accommodating various data types, including both primitive values and object references. In this article, we'll dive into the capabilities of the Set object in ES7 (ECMAScript 2016) and explore its usage in TypeScript.
  • JavaScript Map Object in ES7 and TypeScriptJan 16, 2024. The JavaScript Map object is a versatile tool for mapping keys to values, offering efficient operations for searching, updating, and deleting elements based on specified keys. In this article, we will explore the capabilities of the Map object in ES7 (ECMAScript 2016) and delve into its application in TypeScript.
  • WeakSet Object in ES7 and TypeScriptJan 16, 2024. The WeakSet object emerges as a unique entity designed specifically for storing weakly held objects. Unlike its counterpart, Set, WeakSet exclusively deals with objects, offering distinct advantages. This article delves into the intricacies of the JavaScript WeakSet object.
  • Deep Dive into Classes and ObjectsJan 10, 2024. Welcome, fellow programmers! Here, we will dive into the world of classes and objects. Classes and objects are fundamental in programming. This post unravels the essence of classes, abstract data types, and the concept of objects.
  • What is Protractor in Angular?Jan 04, 2024. Protractor, designed for Angular applications, is an E2E testing framework built on WebDriverJS. With Angular-specific features, automatic waiting, and cross-browser support, it streamlines end-to-end testing for Angular developers.
  • What is Primary Constructors in C# 12?Jan 03, 2024. Ditch the boilerplate and embrace elegant object creation with C# 12's primary constructors. This feature takes the hassle out of initialization, simplifies member assignment, and clarifies your code. Dive into its syntax, power, and practical application for smoother development.
  • Object Creation in C# with the Factory PatternDec 29, 2023. The power of software design with the Factory Pattern in C#. This comprehensive guide explores its role, benefits, and step-by-step implementation, empowering developers to craft modular and scalable code effortlessly.
  • API Development Using Dapper and Microsoft Asp.NET Core Web API Dec 24, 2023. ASP.NET Core is a powerful framework for building web applications, and "Dapper" is a popular micro ORM (Object-Relational Mapping) that works well with ASP.NET Core for database operations. Dapper provides a simple way to interact with databases using raw SQL queries while mapping the results to objects.
  • Building a Custom Object Mapper in ASP.NET Core Using C#Dec 21, 2023. Unlock the power of data transformation in ASP.NET Core with a custom object mapper. Delve into the steps—defining mapping configurations, implementing logic, and seamless integration—ensuring tailored, efficient, and maintainable data conversion in your applications. Happy coding!
  • Configure Azure AD Connect Sync and Cloud Sync Tools to Prevent Accidental Object DeletionDec 17, 2023. This blog post is a combination of old and new features of Azure AD Connect Sync and Azure AD Cloud Sync tools. AAD Connect Sync feature was there already and what’s new is the Sync Client’s feature of preventing accidental deletion.
  • Reading properties of an object in C#Nov 26, 2023. 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 metadata at runtime, providing flexibility but with potential performance drawbacks. On the other hand, the dynamic keyword allows for late-binding, bypassing static type checking, but may result in runtime exceptions and relies on the Dynamic Language Runtime (DLR). The choice between reflection and dynamic depends on specific needs and scenarios.
  • .NET Core: Detail of Lifetime ManagementNov 21, 2023. In .NET Core, lifetime management refers to how objects are created, used, and eventually disposed of within an application. It ensures efficient resource utilization and prevents memory leaks.
  • Creating Consistent ASP.NET Core Web API Responses with AutoMapper and DTOsNov 17, 2023. Developing a robust ASP.NET Core Web API hinges on the subtle yet pivotal details of response structuring. Leveraging AutoMapper in tandem with well-designed Data Transfer Objects (DTOs) not only ensures the separation of concerns but also orchestrates a symphony of consistent and predictable API responses. These intricacies extend beyond mere data mapping; they epitomize a strategic approach in harmonizing the internal model intricacies with the API's outward-facing facade. Unveiling the elegance of these detailed mappings and the orchestration of a uniform response structure not only enhances the developer's workflow but also augments client-side integration, presenting an intuitive and standardized communication channel. Addressing these finer points not only establishes a foundation for resilient error handling but also fuels the API's scalability and ease of maintenance, fostering an environment where agility meets reliability.
  • How to Choose Between Inheritance and Composition?Nov 16, 2023. When to use composition over inheritance and vice versa as a coding best practice.
  • Liskov Substitution Principle (LSP) in .NET 6 CoreNov 15, 2023. 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 demystify LSP and illustrate its application in .NET 6 Core through a familiar context—a chain of classes. We'll employ a comparable example to the ones used in our previous discussions on the Single Responsibility Principle (SRP) and the Open-Closed Principle (OCP)
  • Object Mapping in .NET with AutoMapperNov 08, 2023. This article on AutoMapper provides a comprehensive overview and introduction to the topic, making it easily accessible for readers who are unfamiliar with the concept. The step-by-step approach in explaining the setup and usage of AutoMapper is particularly helpful for beginners.
  • Service Oriented Architecture vs Microservice ArchitectureOct 17, 2023. In software development, choosing the right architectural approach is critical to a project's success. Two prominent contenders in this area are Service-Oriented Architecture (SOA) and Microservice Architecture (MSA). This comprehensive guide explores their core principles, characteristics, advantages, and limitations, empowering you to make informed decisions for your project's needs.
  • Array to Object in JavaScript: The Best Way to Manipulate DataOct 04, 2023. Learn how to convert an array to an object in JavaScript with simple examples and methods.
  • Building Flexible And Future-Proof C# Applications With ExamplesSep 27, 2023. 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 adhering to the OCP, you can create software that is easy to extend and maintain without modifying existing code. We'll delve into the theory behind OCP and provide practical C# examples to illustrate its application.
  • SOLID Principle of Object Oriented Programming in C#Sep 21, 2023. The SOLID principles along with examples and explanations. These principles are indeed important for designing maintainable and robust software systems. If you have any specific questions or if there's anything else you'd like to know or discuss related to software development or any other topics.
  • Thread Synchronization in JavaSep 20, 2023. When using two or more threads in a program, it may be so happening that more than one thread wants to access a resource at the same time. For example, one thread might try to read data from a file while the other tries to change data in the same file.
  • Data Transfer Objects (DTOs) in C#Sep 19, 2023. In the world of software development, Data Transfer Objects (DTOs) are vital for efficient data communication and manipulation. This article explains DTOs in C#, their importance, and practical usage.
  • Destructuring in JavascriptSep 18, 2023. Destructuring in JavaScript simplifies the extraction of specific values from arrays and objects. For instance, when dealing with arrays or objects, you might not always need all the values, only specific ones. It streamlines this process by allowing you to assign these values to variables.
  • Mock Testing with MOQSep 18, 2023. This article is about Imporanct and Use of Mock Testing. I have explained Mock Testing in a simple way, and demonstrated the use with the code example.
  • Field vs Property in C#Sep 18, 2023. In C# object-oriented programming (OOP), distinguishing between "fields" and "properties" is fundamental. Fields directly store data, typically with private or protected access modifiers for encapsulation. They're ideal for managing an object's internal state. Properties, on the other hand, provide controlled access to fields via getter and setter methods, allowing validation and logic integration.
  • Effortless Personalized Vision Models with Azure Custom VisionSep 12, 2023. Azure Custom Vision, a Microsoft innovation, merges artificial intelligence and computer vision, reshaping industries with its image analysis capabilities. This article explores Azure Custom Vision's simplicity, offering custom vision models for various needs. It outlines its features, real-world applications, and step-by-step model creation process.
  • Pillar of OOPS (Object Oriented Programming)Sep 06, 2023. This article explores the fundamental pillars of Object-Oriented Programming (OOP): Encapsulation, Abstraction, Polymorphism, and Inheritance. It provides detailed explanations and real-world examples to enhance your understanding of these critical concepts, making it a valuable resource for developers and interview preparation.
  • Exploring C# Tuples: Simplifying Data Structures with ExamplesAug 31, 2023. Discover the Power of C# Tuples: Simplifying Data Structures. Learn how Microsoft's C# language utilizes lightweight Tuples for efficient data grouping, enhancing code clarity, and improving performance.
  • Web Application Enhancement: Action Filters for Cross-Cutting ConcernsAug 28, 2023. Action filters are an integral part of many modern web frameworks, including ASP.NET MVC, ASP.NET Core, and others. They allow you to intercept and modify the request and response pipeline for an application's actions or methods. Action filters provide a way to apply cross-cutting concerns, such as authentication, logging, validation, caching, and more, to multiple actions or controllers without duplicating code.
  • Private Constructor in C# Aug 28, 2023. Explore Private Constructors in C#: Unveiling Their Roles and Significance. Discover how these constructors influence design patterns like Singleton, control object creation, and encapsulate initialization logic for improved C# applications.
  • Simplifying Data Transfer Objects (DTOs) in C# with RecordsAug 27, 2023. C# records provide a more elegant and succinct way to define DTOs. In this article, we will explore the benefits of using C# records for DTOs with a concrete example.
  • A comprehensive overview of Dictionary in C#Aug 25, 2023. Dictionaries are essential tools for managing data efficiently through key-value pairs, offering rapid retrieval and manipulation. The Dictionary<TKey, TValue> class empowers developers to effectively add, access, and update items, enhancing performance and problem-solving capabilities.
  • Exploring the Diverse Flavors of LINQ with ExamplesAug 22, 2023. LINQ is a powerful feature in modern programming languages like C# that allows developers to perform queries on different types of data sources using a consistent syntax. With LINQ, you can query and manipulate data without worrying about the underlying data source, whether it's an in-memory collection, a database, or XML
  • Best Practices for Creating ASP.NET Core REST API using OpenAPIAug 22, 2023. It seems like you're looking for a description of something specific, but your request is a bit unclear. Could you please provide more context or clarify what you'd like a description of? Whether it's related to ASP.NET Core REST APIs, OpenAPI, or any other topic, I'd be happy to help once I understand your request better.
  • String Methods in JavaScriptAug 22, 2023. Explore essential JavaScript string methods in this guide. Learn to manipulate, extract, and transform strings using functions like charAt, concat, includes, indexOf, and more. Start mastering JavaScript string manipulation today!
  • Convert String into Array in JavaScriptAug 21, 2023. Efficiently transform strings into arrays in JavaScript. Explore split() method, custom delimiters, and JSON conversion.
  • How to Receive JObject in Post API in C#.NET?Aug 17, 2023. Learn to handle JSON objects in POST APIs using C#.NET. Utilize HttpClient to set up the request, cast the response into a JObject, and deserialize it into a custom class. Streamline your data processing.
  • JavaScript DOM Manipulation Techniques: Building Dynamic Web ApplicationsJul 23, 2023. The Document Object Model (DOM) is a fundamental concept in web development that allows developers to interact with and manipulate the content and structure of HTML documents. It serves as a bridge between HTML, CSS, and JavaScript, enabling dynamic and interactive web pages. Mastering HTML DOM is crucial for every web developer, as it provides the foundation for creating powerful, responsive, and user-friendly websites. In this comprehensive guide, we will explore the ins and outs of HTML DOM, its core concepts, and practical examples to solidify your understanding.
  • How to Iterate Over JavaScript Object's Properties and Values?Jul 19, 2023. In this article, we will learn How to Iterate Over JavaScript Object's Properties and Values
  • How to Map Object-to-Object using Automapper in .NET CoreJun 09, 2023. In this article, we will explore the benefits of Automapper and provide a step-by-step example of how to use it.
  • Azure Custom Vision:Enhancing Vehicle Object Detection with Tailored ModelsJun 05, 2023. This article describes about enhancing vehicle object detection using Azure Custom Vision and its applications.
  • Convert a JSON object into a string in C#Jun 03, 2023. Code example of how to convert an object into a JSON string in C#.
  • Introduction on SQL+Jun 02, 2023. In this article, we will delve into the world of SQL+ and explore its capabilities, advantages, and real-world applications. We will provide code snippets and examples to illustrate the power of SQL+ in action, empowering you to leverage this advanced SQL variant to tackle complex data challenges with ease.
  • Dot Vs Bracket Notation in JavascriptMay 30, 2023. In this article, we will learn Dot Vs Bracket Notation in Javascript
  • Naming Convention in JavaMay 17, 2023. This article is all about the Naming convention of the Java programming language.
  • Important JavaScript Concepts for DevelopersMay 11, 2023. JavaScript Important Concepts for Developers
  • Azure Custom Vision: Object Recognition in .NET ApplicationsMay 01, 2023. In this tutorial, we'll learn how to call an Azure Custom Vision object recognition model from a .NET application.
  • Static Methods Vs. Non-Static Methods In C#Apr 27, 2023. The difference between static and non-static methods in C#.
  • Strings In RustApr 27, 2023. In this article, we discuss what is a string in Rust, the type of string in Rust, and how to use them.
  • How to Use MySQL Workbench?Apr 25, 2023. How to use MySQL workbench.
  • Broadcast Object to Multiple Browser TABS using JavascriptApr 24, 2023. The Broadcast Channel API allows basic communication between browsing contexts (that is, windows, tabs, frames, or iframes) and workers on the same origin.
  • Dapper vs Entity Framework Core vs ADO.NET: Which One Should You Choose?Apr 19, 2023. Dapper vs Entity Framework Core vs ADO.NET: Which One Should You Choose?
  • Power Up Your Automations: Mastering Array and Object Comparison in Power AutomateApr 18, 2023. Learn how to take your Power Automate game to the next level by mastering array and object comparison! Discover the tips and tricks you need to streamline your workflow and supercharge your automation skills in this must-read article
  • Details about Dokcer and it's basic commandsApr 18, 2023. Details about Docker and it's basic commands
  • C# 12's Records: A Game Changer for Data Objects and Immutable TypesApr 17, 2023. C# 12's Records: A Game Changer for Data Objects and Immutable Types
  • How to Use GUIDs in C#?Apr 14, 2023. we are looking at GUIDs (Globally Unique Identifiers), which are widely used in C# for generating unique identifiers for objects, entities, and resources in a system. In this post, we'll explore the basics of GUIDs in C#, their advantages, and how to convert strings to GUIDs
  • Copy All Properties Of One Object Into Another Without Any Package In C#Mar 27, 2023. In this article we are going to map one object to another object which are same type and also different type. Some properties are exact same and some are different in case.
  • Simplifying Object Creation - Using The Factory Design Pattern In Everyday DevelopmentMar 15, 2023. In software engineering, a creational design pattern is a design pattern that deals with the process of object creation in a way that is both flexible and efficient. Creational design patterns provide general solutions for creating objects that are suitable for a wide variety of situations, without being tied to specific classes or configurations.
  • How To Check If A Key Exists In An Object In JavaScriptMar 13, 2023. In this tutorial, we'll determine if a specific key exists in an object in Javascript.
  • C# 11 - Immutable Object And Defensive CopyFeb 27, 2023. We discuss some issues related to Immutable Object and “defense copy”.
  • C# 11 - Immutable Object PatternFeb 22, 2023. Beginner’s tutorial on Immutable Object Pattern with examples. An Immutable Object (Internal Immutability) in C# is an object whose internal state cannot be changed after it is created. That is different from an ordinary object (Mutable Object).
  • C# - Value Object Pattern, Data Transfer Object PatternFeb 22, 2023. Beginner’s tutorial on Value Object (VO) Patten and Data Transfer Object (DTO) Pattern with examples
  • Differences Between Object Oriented Development(OOD) And Service Oriented Architecture(SOA)Feb 16, 2023. This article in deep explains the differences between Object Oriented Development(OOD) and SOA(Service Oriented Architecture).
  • Difference Between Var, Dynamic And Object type In C#Feb 13, 2023. In this article, I am going to explain var, dynamic, and object keywords in detail.
  • Interface Class In C#.NETFeb 13, 2023. 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
  • Remove Duplicates From An Array Of Objects Using JavaScriptFeb 09, 2023. In this article, you will learn how to remove Duplicates from an array of objects Using Javascript.
  • Advanced JS - Refactoring Toward ObjectsFeb 07, 2023. This article will help you to understand and refactor toward OOP in Javascript.
  • Object Detection With Azure Custom VisionJan 24, 2023. In this tutorial, we will learn how to create a computer vision model with the Azure Custom Vision resource, for the recognition of objects (Bottles, Faces, Guitars, and Hats) in images.
  • What Is A Chatbot And How Does It WorkDec 16, 2022. Chatbots use natural language processing (NLP) and set of pre-defined rules to understand the inputs as question and provide response closer to what is available with the knowledge database programmed in a much more interactive and intuitive way of communication.
  • Convert XML Files Data To List Of ObjectNov 13, 2022. In this blog, we learn how to get all XML files from a specific location and convert it's data into the C# object.
  • Generating An Excel File Through A List Of Objects In ASP.NET MVCOct 07, 2022. The purpose of this article is to facilitate the generation of an Excel file from a list of objects passed as parameters, allowing the choice of columns to be displayed and also the merging of cells with the same content and other parameters.

About object-oriented

NA

OUR TRAINING