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 Reusability
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Dhiraj Poojary (2)
Ajay Kumar (2)
Narayana Surapaneni (2)
Arkadeep De (1)
Kautilya Utkarsh (1)
Uday Dodiya (1)
Devesh Omar (1)
Aman Gupta (1)
Rijwan Ansari (1)
Vijay Yadav (1)
Chetan Sanghani (1)
Ayush Gupta (1)
Alkesh Bijarniya (1)
Sanjay Kumar (1)
Lokendra Singh (1)
Akshima Aggarwal (1)
Prasad Raveendran (1)
Shashank Srivastava (1)
Vithal Wadje (1)
Manoj Kalla (1)
Santhosh Veeraraman (1)
Dryshtee Woozir-Manilall (1)
Arvind Kushwaha (1)
Ashish Bhatnagar (1)
Bhuvanesh Mohankumar (1)
Bhawesh Deepak (1)
Ishika Tiwari (1)
Mani Gautam (1)
Mukesh Kumar (1)
Dipal Choksi (1)
Tran Khanh Hien (1)
james (1)
Related resources for Reusability
No resource found
How To Add Dependency Injection In Your Sitecore Application
9/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 Generics
9/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 JavaScript
9/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 Patterns
8/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 Application
8/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 Blazor
8/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 It
7/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 Development
7/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 OOPS
7/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 ReactJS
7/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 Patterns
7/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 Java
6/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 PROCEDURES
6/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 Principles
5/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 Techniques
4/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.NET
4/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 .NET
3/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 ReactJS
3/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 Hub
2/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 Pattern
2/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 Reusability
1/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 Guide
1/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 Core
8/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 Readability
6/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 Kotlin
12/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.NET
11/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 2
9/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 Reusability
2/13/2007 6:27:13 AM.
This article explain, how to create a user control for ASP.NET.
The CodeLib Program
12/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 I
12/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 Code
12/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.