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 Clean
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sardar Mudassar Ali Khan (9)
Ayush Gupta (5)
Kautilya Utkarsh (4)
Ziggy Rafiq (3)
Rijwan Ansari (3)
Amit Tyagi (3)
Abiola David (2)
CSharp TV (2)
Ashutosh Singh (2)
Sanjay Mrinal Kumar Kodangi (2)
Jay Krishnareddy (2)
Jignesh Kumar (2)
Amit Mohanty (2)
Vinay Ayinapurapu (2)
Bassam Alugili (2)
Vitalii Honcharuk (2)
Sonil Kumar (2)
Mahesh Chand (2)
Abhishek Mishra (2)
Manikandan Murugesan (1)
Habibur Rony (1)
Tejas Agravat (1)
Pradeep Shet (1)
Hari Lakkakula (1)
John Godel (1)
Dhruvin Shah (1)
Jitendra Mesavaniya (1)
Abhishek Arora (1)
Rajeev Punhani (1)
Lokendra Singh (1)
Darshan Adakane (1)
Shiv Sharma (1)
Nilanjan Dutta (1)
Chittaranjan Swain (1)
Vijai Anand Ramalingam (1)
Mithilesh Tata (1)
Najath Risni (1)
Ajay Kumar (1)
Sarthak Varshney (1)
Nandan Hegde (1)
Abdul Raheem (1)
Tahir Ansari (1)
Priyanshu Agnihotri (1)
Narendra Singh (1)
Mohamed Azarudeen Z (1)
Ravi Raghav (1)
Bhavesh Raval (1)
Kirtesh Shah (1)
Aymen Amri (1)
Munib Butt (1)
Debendra Dash (1)
Charalambos Hadjiantoniou (1)
Jay Pankhaniya (1)
Cristopher Coronado (1)
Rahim Lotfi (1)
Bishwanath Dey Nayan (1)
Diksha Gupta (1)
Hamid Khan (1)
Chervine Bhiwoo (1)
Ankit Bansal (1)
Aman Singhal (1)
Arun Choudhary (1)
Yadagiri Reddy (1)
Priyanka Jain (1)
Ahd Ben Kheder (1)
Sanket Terdal (1)
Related resources for Clean
No resource found
Repository Pattern in .NET Core for Clean Data Access
11/15/2024 11:24:56 AM.
Learn how to separate business logic from data logic, enhance testability, and reduce code duplication. By following these best practices, you’ll achieve modular, scalable applications in .NET Core.
Code Reviews to Eliminate Common Anti-Patterns
11/7/2024 9:52:19 AM.
Enhancing software quality by avoiding antipatterns in code reviews that cover antipatterns in the Input Kludge, Magic Pushbutton, Encapsulation Violation, Anemic Domain Model, and
How to Build a Clean Architecture Web API with .NET Core 8
9/26/2024 9:15:22 AM.
Learn how to build a robust Web API using Clean Architecture principles with .NET Core 8. This guide covers essential concepts, including modular design, dependency injection, and best practices for A
Using C# 12 with Clean Code Practices
9/21/2024 3:37:12 PM.
Learn how to write cleaner, more maintainable code with C# 12 features such as primary constructors and improved pattern matching. This article explores practical examples and tips for applying clean
Cleaning the Resources: Finalize vs Dispose
9/19/2024 10:13:39 AM.
This article explores the concepts of Destructor and Dispose in C#. It illustrates the object's lifecycle, highlighting how constructors allocate memory and destructors clean up. The role of the G
Azure Data Factory: Clean and Transform Multiple Data using Dataflow
8/8/2024 4:14:34 AM.
In this Data Engineering episode, I covered how to use Azure Data Factory Dataflow to read, appends multiple CSV files from ADLS Gen2, clean and transform the data and sink to the Azure SQL Database f
Wrapper Class vs. Object Composition with UseCase
7/18/2024 9:38:59 AM.
Explore Wrapper Classes and Object Composition in object-oriented programming. Learn how wrappers adapt interfaces and enhance functionality without altering code, ideal for legacy systems.
Best Practices for Writing Clean and Maintainable Codes
7/8/2024 8:51:02 AM.
This session will conclude with a summary of the key points and provide attendees and viewers with actionable takeaways to implement in their coding practices.
Learn Clean Architecture in .NET
7/4/2024 8:48:38 AM.
Clean Architecture is a software design philosophy that emphasizes creating maintainable, testable, and understandable systems by following principles like separation of concerns, dependency inversion
Understanding CQRS Design Pattern
6/27/2024 5:05:00 AM.
The CQRS (Command Query Responsibility Segregation) pattern separates the operations for reading and writing data in software architecture. It enhances scalability by segregating commands (writes) and
Integrating Data Preparation into the Workflow
6/21/2024 7:35:36 AM.
In this article, we will Discover advanced techniques in data cleaning, transformation, and automation, crucial for enhancing machine learning outcomes and overall operational efficiency.
Extract Plain Text From SharePoint Rich Textbox Field In Power BI
6/12/2024 9:42:53 AM.
Streamline data integration and visualization in Power BI by removing HTML from SharePoint list fields. Enhance reporting by transforming HTML-rich text into plain text. Follow the tutorial for effici
Using CTEs in PostgreSQL for Cleaner Efficient Queries
6/12/2024 5:23:30 AM.
In the realm of SQL databases, PostgreSQL stands out with its rich feature set, one of which is Common Table Expressions (CTEs). CTEs offer a powerful way to simplify and structure complex queries, ma
Expression Bodied Members: A New Feature of C# 6.0
5/29/2024 8:11:40 AM.
C# 6.0 introduced Expression Bodied Members, leveraging Lambda expressions to simplify syntax, reduce code, and enhance readability. These members streamline method and property definitions, offering
Understanding the SOLID Principles in Object-Oriented Design
5/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
Memory Management Using Finalize And Dispose Method
5/17/2024 10:36:10 AM.
Memory management ensures efficient use of system resources. The finalize method performs cleanup before object destruction, The Dispose method releases resources explicitly, especially for unmanaged
Mastering Python Best Practices for Clean and Efficient Code
5/17/2024 7:10:25 AM.
In Python development, adhering to best practices is paramount for code clarity and efficiency. Embrace PEP 8 guidelines, document with docstrings, use list comprehensions, and handle exceptions judic
Clean Code Practices: Elevating Code Quality in C# Development
5/15/2024 4:07:20 AM.
This article delves into the significance of clean code practices in software development, tracing its history, emphasizing its necessity, and exploring its evolution. It includes practical C# code de
Enhancing Code Quality: Unit Testing & Coverage in C# Development
5/14/2024 10:09:32 AM.
Unit testing and code coverage are vital in software development, ensuring reliability and identifying bugs early. This article explores their history, needs, evolution, types, popular tools, and prac
Command Query Responsibility Segregation and its Evolution
5/14/2024 5:41:56 AM.
Command Query Responsibility Segregation (CQRS) separates read and write operations in system architecture, enhancing scalability and performance. This article explores its need, evolution, and implem
Wrangling Outliers and Noise in Your Data
5/7/2024 9:04:21 AM.
This comprehensive guide explores the nuances between outliers and noise in data analysis. It delves into identification techniques and handling strategies, showcasing practical examples for effective
Spotting and Fixing Inconsistencies and Duplicates
5/7/2024 6:21:16 AM.
This article delves into the critical task of data cleaning for AI models. It covers identifying and handling inconsistent data through techniques like formatting, encoding, and imputation, alongside
How to write Clean code in C#?
5/6/2024 11:36:19 AM.
Writing clean code is important so that it makes reading code easier, helps us fix and update it faster, and ensures it works smoothly and reliably. Here we will look for few tips to write clean code.
Strategies for Handling Missing Values in Data Cleaning
5/6/2024 5:40:52 AM.
Handling missing values is crucial in data cleaning. By categorizing them as MCAR, MAR, or MNAR, we can apply appropriate techniques like replacing categorical values with the most common and numeric
The Crucial Role of Data Cleaning in Machine Learning
5/2/2024 4:12:49 AM.
Data cleaning is vital for machine learning models, ensuring accuracy by eliminating errors like missing values, outliers, duplicates, and noise, thus enhancing performance and fairness in predictions
Using Mediator In Web API's For CQRS Pattern
4/30/2024 9:36:30 AM.
Implement Mediator pattern in Web APIs to embrace CQRS architecture. Utilize separate commands and queries for handling requests, promoting better code organization, and decoupling components, enhanci
Real-Time Text Display in Power Apps
4/30/2024 9:16:05 AM.
Explore the seamless integration of real-time text input updates with Power Apps. Discover how effortlessly display text input changes dynamically in labels, enhancing user interaction and engagement.
💠 Clean Architecture End To End In .NET 5
4/30/2024 9:06:48 AM.
Explore the implementation of Clean Architecture in ASP.NET 5.0, covering aspects like Entity Framework Code First Approach, Dependency Injection, AutoMapper for object-object mapping, JWT Authenticat
Clean Code - Single Level Of Abstraction
4/25/2024 8:50:29 AM.
Discover the essence of clean code with Single Level of Abstraction. Elevate readability and maintainability by adhering to this principle, ensuring each function or method performs a single task at a
Delete Duplicate Rows In SQL Server From A Table
4/25/2024 8:49:52 AM.
In SQL Server, delete duplicate rows from a table efficiently using techniques like DISTINCT, GROUP BY, or ROW_NUMBER(). Ensure data integrity by considering primary keys or unique constraints.
Site Closure and Deletion in SharePoint
4/18/2024 8:26:36 AM.
Implement site closure & deletion protocols in SharePoint 2013 for streamlined governance. Enforce policies, manage lifecycle, and utilize recycle bin for efficient site cleanup. Ensure compliance
Best Practices for Handling Exceptions in C#
4/16/2024 10:49:46 AM.
Learn effective exception handling techniques in C# with Ziggy Rafiq's comprehensive guide. Discover best practices for managing exceptions, including specifying exception types, logging errors, a
A Clean Architecture for Building Web Applications with ASP.NET Core MVC C#
4/9/2024 5:58:07 PM.
Discover a clean architecture approach for ASP.NET Core MVC web applications in C#, guided by Ziggy Rafiq for optimal design and development. ASP.NET Core MVC is a robust framework for constructing we
How to Remove Duplicate Email Items in Outlook
3/6/2024 7:22:26 AM.
Explore methods to remove duplicate email items in Outlook. Get the best solutions to remove duplicate email items from Outlook in easy steps.
Clean and Transform Data using M Code Stored in Text File
2/5/2024 8:32:26 AM.
In this video, I showed how to clean and transform data using M code stored in Text file in excel
Extending List Functionality with C# Extension Methods
1/22/2024 8:21:54 AM.
In this article, I will demonstrate How to create an extension method in c# for List type. I will explain how we can extend the functionality of List without a new derived class. I will create extensi
How to Clean and Replace Corrupted Files in Windows 11
1/17/2024 11:23:36 AM.
The SFC process usually takes 5–10 minutes to complete, but it may take longer if the task is heavy. If the process takes longer than an hour, it may be stuck.
A Guide for Building a .NET Project with Clean Architecture
1/2/2024 10:08:31 AM.
In this article we will take a closer look at the foundational thoughts and factors influencing our project creation. Clean Architecture emphasizes the separation of concerns and dependency inversion
Clean Architecture
1/2/2024 6:37:21 AM.
Embark on a learning journey into the world of Clean Architecture, a transformative paradigm in software development. Uncover its core principles, such as separation of concerns and testability, with
Clean Code : Avoid Too Many Parameters In Method
12/18/2023 6:12:39 AM.
In this article I will demonstrate code clean up by passing less number of parameters in method. One common challenge developers face is the Excessive parameters in their methods. Excessive parameter
Clean Architecture In ASP.NET Core Web API
12/11/2023 6:10:03 AM.
In this article, you will learn about Clean Architecture in Asp.net Core Web API.
How to Uninstall SPFx Tool Chain
12/8/2023 10:34:14 AM.
The article explains step by step process to uninstall and clean up SPFx tool chain in your Developer Environment.
New Features of Rust 1.73
11/2/2023 7:18:05 AM.
Rust 1.73 is a major release that includes a number of new features and improvements, such as impl Trait syntax, generic associated types, and improved borrow checker performance. These changes make R
Dispose or Finalize Choosing the Right Cleanup Mechanism in C#
11/2/2023 5:45:22 AM.
Dispose or Finalize Choosing the Right Cleanup Mechanism in C Sharp. This article provides a comprehensive understanding of the Dispose and Finalize mechanisms in C#, along with real-world examples sh
Open-Closed Principle (OCP) in .NET 6 Core
10/30/2023 5:50:49 AM.
As a beginner developer, you're likely on a quest to create clean, maintainable, and scalable code. One of the guiding principles in this journey is the "Open-Closed Principle" from the
Interpreter Pattern in ASP.NET Core Web API with Clean Architecture
10/18/2023 6:41:01 AM.
Explore the application of the Interpreter Design Pattern in an ASP.NET Core Web API, following Clean Architecture principles. This article delves into building a robust CarCompany CRUD system, emphas
Clean Architecture and Command Pattern in ASP.NET Core API Implementation
10/16/2023 8:25:42 AM.
Explore a clean and efficient approach to building a robust ASP.NET Core Web API for a Car Company, using Clean Architecture and the Command Pattern. Simplify CRUD operations with a structured and mai
Simplified ASP.NET Core Web API with Clean Architecture and Chain of Responsibility
10/16/2023 7:11:21 AM.
In the ever-evolving landscape of web development, creating a robust and maintainable API is crucial. ASP.NET Core, with its versatility and performance, provides an excellent foundation for building
API Development using Clean architecture and facade design pattern in Asp.Net Core Web API
10/16/2023 4:56:31 AM.
Implementing a complete solution with all the details you've requested involves a significant amount of code, and it might not be feasible to provide an exhaustive example here. However, I can giv
Clean Architecture ASP.NET Core Web API Proxy
10/13/2023 5:47:09 AM.
In the realm of modern web development, constructing a robust and scalable solution is paramount. This journey often involves harmonizing architectural principles and design patterns to enhance mainta
Efficient ASP.NET Core Web API Development with Clean Architecture, Flyweight Pattern
10/11/2023 6:35:10 AM.
the implementation of the CarCompany CRUD operations within an ASP.NET Core Web API, following the Clean Architecture principles, has been successfully structured. The separation of concerns into laye
How to Build APIs using ASP.NET Core, a clean architectural approach, and the decorator design pattern
10/10/2023 6:32:14 AM.
Implementing the Decorator Pattern in an ASP.NET Core Web API with Clean Architecture involves structuring your application into layers and using decorators to add functionality to specific methods or
Decoding Clean Architecture Implementing the Bridge Pattern and API Operations in ASP.NET Core Web API
10/9/2023 8:45:27 AM.
By adhering to Clean Architecture principles, the codebase promotes a clear separation of concerns, ensuring that business logic is isolated from implementation details. This not only enhances code ma
Cleansing Files of Duplicate records via Azure Data Factory / Synapse
10/3/2023 7:04:16 AM.
Cleansing Files of Duplicate records via Azure Data Factory / Synapse - Part 1
Clean Architecture in ASP.NET Core 6 with CQRS
9/25/2023 6:33:45 AM.
An article about clean architecture and how to implement it in asp.net core 6 with Mediatr, AutoMapper, and CQRS technique
Tips To Write Clean C# Code
9/5/2023 6:34:43 AM.
This article helps you to write a clean and robust C# code using some tips and tricks.
How to Declare and Initialize a Tuple in C#?
7/31/2023 10:56:30 AM.
Learn about C# tuples: immutable data structures for grouping elements, useful for returning multiple values from methods.
Clean Architecture And CQRS Pattern
7/24/2023 11:30:03 AM.
In this article, you will learn about Design Patterns for achieving clean code architecture.
Data Preprocessing In Machine Learning
7/11/2023 8:21:50 AM.
Preprocessing in machine learning refers to the steps taken to prepare and transform raw data into a format that can be effectively utilized by machine learning algorithms
Clean Code in Your Cloud Work Flow with SonarCloud
6/12/2023 7:01:08 AM.
Automatic code analysis for .NET projects with SonarCloud
Mastering Bot Integration in Azure: Unleashing the Power of Clean Code
5/22/2023 12:26:26 PM.
his article dives deep into the world of bot integration in Azure, providing you with invaluable insights into the art of clean coding. Discover how to architect modular and structured code, implement
Clean Coding Practices In .NET - Unit Tests And SOLID Principles
3/20/2023 8:25:31 AM.
In this article, you will learn about Clean Coding Practices in .NET: Unit Tests and SOLID Principles.
How To Clean Up The User Permission From SPO Site
1/11/2023 4:09:16 AM.
The document gives you an overview of what is User Information list and how to clean up the user information from the SPO sites
ASP.NET Core Web API Clean Architecture With JWT Authentication
11/11/2022 2:36:48 AM.
In this article, you will learn about ASP.NET Core API Clean Architecture With JWT authentication and Swagger.
Clean Architecture With ASP.NET Core WebAPI
10/3/2022 8:53:18 AM.
Asp.net Core WebAPI - Clean Architecture, Clean Architecture With ASP.NET Core WebAPI
General Guidlines To Have A Clean And Maintainable Application
7/18/2022 8:31:35 AM.
In this article, you will learn about general guidlines to have a clean and maintainable application.
Modern Architecture Shop (Clean Architecture And Microservices)
6/24/2022 6:58:57 AM.
Modern Architecture Shop is a clean, lightweight .NET microservices application, showcasing the use of Dapr to build microservices-based applications.
The Simplified Clean Architecture Model
5/19/2022 2:22:47 PM.
In this article, you will learn about the simplified Clean Architecture Model.
Important Tips To Write Clean Code In C#
3/31/2022 9:18:33 AM.
In this article, we will see how to write clean code in C# .
Fast, Simplest And Clean O1 LFU Cache Algorithm Implementation In C#
3/24/2022 1:21:58 PM.
In this article, you will learn about fast, Simplest and Clean O1 LFU Cache Algorithm Implementation In C# using available default classes.
Fast, Short And Clean O1 LRU Cache Algorithm Implementation In C#
3/23/2022 6:09:56 AM.
In this article, you will learn about Fast, short and clean O1 LRU Cache implementation in C#
Clean Architecture With .NET 6 Using Entity Framework
3/22/2022 2:55:38 PM.
The scope of this article is to implement Entity Framework in Clean Architecture with .NET 6 and ASP.NET core Web API. Implement Entity Framework in Clean Architecture Solution with .NET 6 Implement a
Clean Architecture With .NET 6
3/16/2022 2:28:18 PM.
The whole idea of this architecture is to allow the core part, which consists of complete business logic and application entities, adaptive and flexible enough to deal with changing technology and int
Implementing A Clean Architecture In ASP.NET Core 6
3/9/2022 3:16:51 PM.
This post is the first part in a series of posts which describe my personal take on implementing a Clean Architecture with ASP.NET Core 6, and hopefully give you some ideas on how to go about building
Clean JSON String To Resolve HTML Content And Double Quotes Issue
2/28/2022 1:27:13 PM.
This article contains the solution to resolve the issue of the html content inside the JSON string response and double quotes issue and get the clean JSON object.
Clean Architecture with .NET 6 using Repository Pattern and EF - MVP Show ft. Rijwan Ansari
2/11/2022 4:11:40 PM.
Watch Rijwan Ansari as he talks about Clean Architecture with .NET 6 using Repository Pattern and Entity Framework.
What Is Clean Architecture
2/9/2022 7:17:12 AM.
The whole idea of this architecture is to allow the core part, which consists of complete business logic and application entities, adaptive and flexible enough to deal with changing technology and int
Implementing Clean Architecture On .NET
11/13/2021 3:22:07 AM.
In this article, you will learn how to implement clean architecture on .NET.
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
Introduction To Clean Architecture And Implementation With ASP.NET Core
8/2/2021 5:32:36 AM.
In this article first we will try to have an introduction to Clean Architecture and later on will try to implement this architecture with ASP.NET Core Application.
Ports And Adapter Architecture
7/28/2021 8:29:30 AM.
Ports and adapter is a very old and clean architecture to write modular and decoupled code. It was formally known as Hexagonal due to its diagram. Which shows as a hexagonal.
Three Practically Used Ways To Improve The Performance Of C# Code
7/27/2021 4:01:15 AM.
C# is a powerful language and it is becoming more popular and strong with Dot net core. I am discussing three practical ways, to tweak the C# code to get a drastic performance improvement, which I hav
How To Do Data Cleaning In Power BI And Its Importance
7/5/2021 9:56:55 AM.
In this article, you will learn how to do data cleaning in Power Bi and Its Importance.
Clean Code In C#
3/15/2021 3:21:11 AM.
In this article, you will learn about Clean code in C#.
Modern Architecture Shop - Autoscaler
11/10/2020 8:39:13 AM.
Modern Architecture Shop is a clean-lightweight .NET and scalable application. Keep your eye on the Road Map (watch it on GitHub). The next version will contain a minimal feature set so that the user
Data Cleansing Tools In Azure Machine Learning
1/23/2020 12:06:46 PM.
Data cleansing is an important part of the Data Science Process which will help in having higher and better accuracy on predictive models. In this article, the process and techniques of doing so shall
Disk Cleanup In Windows 10
1/9/2020 11:16:09 PM.
Here are some of the options you may use to free up disk space in a Windows 10 PC.
Install Clean Windows 10
1/6/2020 11:05:05 PM.
This article shows how to install Windows 10 without using the Windows Update feature.
Run Disk Cleanup to Remove Temporary Files in Windows 8
12/29/2019 11:10:26 PM.
In this article we explain how to run a cleanup to remove temporary files in Windows 8.
Delete Temporary Files in Windows 8
12/5/2019 1:15:43 AM.
This article describes how to delete temporary files in Windows 8.
Maven Installation on Microsoft Windows
11/25/2019 8:07:06 AM.
In this video, I will show you how to download and install Maven on your computer. Maven is a build automation tool used primarily for Java projects.
useEffect Hook In ReactJS - Part Two
9/19/2019 1:41:25 AM.
This article talks about the concept of using useEffect() only once and using it with clean up.
How To Organize Your ASP.NET Core Startup File
8/26/2019 4:49:05 AM.
In this article, you will learn how to organize and clean up your Startup.cs.
Builder Design Pattern Using C#
4/18/2019 8:23:49 AM.
In this article, we will understand the Builder Design Pattern, when we should actually use it, and a practical example along with the disadvantages and advantages of it.
Observer Design Pattern Using C#
3/29/2019 9:33:31 AM.
In this article, we will understand what Observer Pattern is and when we actually need to use it, along with a practical example and real life use case.
Adapter Design Pattern Explained Simply
3/22/2019 9:11:32 AM.
This article will explain the adapter design pattern , its practical use case with its benefits and drawbacks.
How to Remove DropBox From my Laptop
2/7/2019 11:30:26 PM.
In this article, I will show you how to cleanly remove DropBox from your machine.
Simple Code Cleanup Tips
10/18/2018 8:11:46 AM.
This article demonstrates simple code writing or code review tips.
Cleansing Data Using Azure Machine Learning Studio - Part 4
10/12/2018 6:46:13 AM.
This is the fourth video in the Azure Machine Learning Studio Series and it describes the SMOTE technique in Azure Machine Learning Studio to deal with the imbalanced dataset.
Cleansing Data Using Azure Machine Learning Studio - Part 3
9/10/2018 12:38:02 AM.
This video describes Signal Processing Filter modules used for complex data (image, speech,etc) cleansing that are available in Azure Machine Learning Studio. It dives deep into Threshold Filter conce