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 Code
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Ayush Gupta (3)
Amit Tyagi (3)
Jignesh Kumar (2)
Sardar Mudassar Ali Khan (2)
Habibur Rony (1)
Ziggy Rafiq (1)
Hari Lakkakula (1)
Abhishek Arora (1)
Darshan Adakane (1)
Nilanjan Dutta (1)
Tahir Ansari (1)
Rahim Lotfi (1)
Sonil Kumar (1)
Hamid Khan (1)
Sanket Terdal (1)
Kannan Sudhakaran (1)
Mike Gold (1)
Related resources for Clean Code
No resource found
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
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
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
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
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
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.
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
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
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
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
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.
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
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
Clean Code In C#
3/15/2021 3:21:11 AM.
In this article, you will learn about Clean code in C#.
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.
Simple Code Cleanup Tips
10/18/2018 8:11:46 AM.
This article demonstrates simple code writing or code review tips.
Writing Clean Code and Magic Numbers
7/28/2015 9:50:39 AM.
In this article you will learn how to write clean code and Magic Numbers.
Book Review: Clean Code - A Handbook of Agile Software Craftsmanship
5/5/2010 11:06:33 PM.
I recently purchased Robert Martin's book Clean Code. Although all the examples are in Java, 99% of the book applies to C# programmers. This articles summarizes some of the main points.