Related resources for Reusability
  • How To Add Dependency Injection In Your Sitecore Application9/27/2024 8:17:09 AM. Dependency Injection (DI) is a design pattern that enhances code maintainability and reusability by allowing developers to create loosely coupled components. It facilitates unit testing and supports v
  • How C# Generics is different from Java Generics9/24/2024 11:29:42 AM. In this article, we explore the distinctive features of C# generics and how they enhance programming efficiency. We compare generics with non-generic types, focusing on benefits like type safety, code
  • Learn Higher Order Functions in JavaScript9/18/2024 4:33:53 AM. A higher-order function in JavaScript is a function that takes another function as an argument, returns a function, or both. This allows for reusability, code abstraction, and functional programming.
  • Understanding of Design Patterns8/30/2024 5:13:44 AM. Design patterns are essential in software development, divided into architectural and application/code-level patterns. Architectural patterns guide the high-level structure of software, ensuring compo
  • Creating Reusable Modal Popups in a Java-Based Web Application8/24/2024 7:32:38 AM. Managing modal popups in Java web applications can be complex if code is duplicated across multiple JSP pages. This guide explores how to centralize and reuse modal code using JSP and servlets, enhanc
  • How to Build and Reuse a Dynamic Pagination Component in Blazor8/23/2024 7:24:43 AM. Learn how to build a dynamic and reusable pagination component in Blazor. This guide covers creating a flexible pagination system that can be easily integrated into different parts of your application
  • What is a Handler in ASP.NET Web Forms and How to Use It7/30/2024 6:26:02 AM. Learn about HTTP handlers in ASP.NET Web Forms, which handle specific HTTP requests like image generation and file downloads. Implement handlers by creating a class that implements IHttpHandler, regis
  • Using .NET Standard in Cross-Platform Development7/17/2024 5:46:27 AM. In today's diverse technological landscape, developing applications that run across multiple platforms is crucial. .NET Standard plays a pivotal role in achieving this goal by providing a consiste
  • Polymorphism Concept OOPS7/16/2024 6:58:21 AM. Polymorphism in C# involves method overloading (multiple methods with the same name but different parameters), method overriding (subclass provides specific implementation of a method in the parent cl
  • What are Custom Hooks in ReactJS7/3/2024 9:19:26 AM. Custom Hooks in ReactJS empower developers to extract reusable logic from components into standalone functions, enhancing code organization and reusability. They encapsulate stateful logic, side effec
  • 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
  • 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
  • Improved Performance by STORED PROCEDURES6/8/2024 1:30:34 PM. Stored procedures in relational database management systems (RDBMS) encapsulate frequently used SQL statements for efficient execution. They offer dynamic SQL execution, return values via OUT keywords
  • Learn About SOLID Principles5/7/2024 11:24:48 AM. SOLID principles are fundamental to object-oriented design, ensuring code is clean, maintainable, and scalable. Learn SRP, OCP, LSP, ISP, and DIP for robust, flexible software architecture.
  • AngularJS Data Handling: Filters and Reusability Techniques4/19/2024 11:05:29 AM. Explore AngularJS filters for efficient data manipulation. Learn to create custom filters and utilize built-in filters like orderBy, limitTo, lowercase, and uppercase. Enhance code reusability and sim
  • Introduction to Web Service with Example in ASP.NET4/11/2024 10:53:13 AM. Explore creating web services in ASP.Net for code reuse across multiple applications. Understand web method attributes, platform independence, and date conversion functionalities. Examples demonstrate
  • Blazor Component: Creation, Lifecycle, Nesting, & UI Integration 4/11/2024 10:41:35 AM. Blazor Components offer a modern approach to web development by utilizing Razor syntax and C#. They enable building interactive and reusable UI elements with data binding and event handling.
  • memoObject Pooling In .NET3/29/2024 6:42:42 AM. Object Pooling optimizes resource usage by reusing objects from a pool. It enhances performance by minimizing object creation overhead. In .NET, it's implemented using a Factory pattern and a Queu
  • Component Reusability, Virtual DOM & Seamless Integration in ReactJS3/11/2024 4:10:44 AM. The hype around React seems to never get down. Many developers jump right into the codes without having a clear picture of what it actually is. In this article, I will expose that I have learnt and ex
  • Create and Use Site Content Type in Content Type Hub2/29/2024 9:54:50 AM. In this article, you will learn how to create, publish, republish, delete and use site content type in content type hub in SharePoint online.
  • React Design Pattern Series: Mastering Hooks Pattern2/5/2024 8:25:20 AM. This article delves into the transformative impact of React Hooks on state and side-effect management within functional components. The piece explores the "what" and "why" behind R
  • Angular Content Projection: UI Flexibility and Reusability1/31/2024 6:59:14 AM. Angular's content projection, also known as transclusion, elevates UI flexibility and reusability within the framework. By enabling the injection of content from a parent component into designated
  • What is Adapter Pattern in C#?1/23/2024 6:10:54 AM. Explore the Adapter Pattern in C#, a crucial design pattern for integrating incompatible interfaces. Learn its components, implementation, and benefits, making code reusability and interoperability se
  • Creating a Java Package - Hands-On Guide1/5/2024 5:27:48 AM. In my preceding article, we delved into the foundational understanding of Packages and their significance in Java programming. Now, building upon that knowledge, this article aims to provide a practic
  • Generics in C#: Enhancing Code Reusability and Type Safety 10/4/2023 4:24:14 AM. In this article, we will explore the concept of generics in C# with detailed examples, showcasing how they enhance code flexibility and maintainability.
  • Generics In C#10/2/2023 8:31:51 PM. In this article you will learn about Generics in C#.Generics in C# provide a powerful way to create classes, interfaces, methods, and delegates with a placeholder for data types. They enable developer
  • Dependency Injection in ASP.NET Core8/21/2023 4:23:58 AM. Discover the power of Dependency Injection (DI) in ASP.NET Core with this comprehensive guide. Dive into the world of IoC (Inversion of Control) principles and learn how DI promotes modular, maintaina
  • Best Practices for CSS Selectors: Optimal Performance and Code Readability6/5/2023 6:08:32 AM. In this article, we will learn how we can Utilize best practices to pick and prioritize elements in a way that maximizes efficiency
  • Code Reusability In Kotlin12/12/2017 11:17:38 PM. In this article, I am explaining how you can reuse your existing code of Kotlin using Inheritance with examples and diagram.
  • Reusability Of The Code With Three Layers Architecture In ASP.NET11/26/2015 9:34:59 AM. In this article, you will learn about how to implement three layers architecture with ASP.NET application.
  • An insight into Code Reusability and COM Interoperability - Part 29/30/2012 4:46:59 AM. We have mushrooms of network systems running across the globe based on many proprietary protocols. In order to integrate these systems to communicate with each other in a more meaningful way, developers or organizations have to face an uphill task.
  • User Control and Reusability2/13/2007 6:27:13 AM. This article explain, how to create a user control for ASP.NET.
  • The CodeLib Program12/28/2005 2:31:32 AM. Reusability of code is one of the common practice in a programmer's daily life.
  • 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.
  • Object Oriented: The Grownup Way to Code12/19/2005 7:39:37 AM. Back in my dark days of Procedural Programming, I remember someone giving me a problem, then banging out a few (hundred) lines of code, achieving my goal, and going on with my life. The next time a similar problem would arise, I’d rewrite, or in some cases, cut & paste my old code to achieve a similar, yet slightly different outcome.