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 Code Maintainability
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Geo J Thachankary (2)
Abhishek Arora (2)
Prasad Raveendran (1)
Ajay Kumar (1)
Related resources for Code Maintainability
No resource found
Understanding the Interface Segregation Principle (ISP) with C#
8/21/2024 4:03:01 AM.
Explore the Interface Segregation Principle (ISP) from SOLID design principles to ensure code flexibility and maintainability. ISP advocates for breaking down large, unwieldy interfaces into smaller,
Understanding the Open/Closed Principle (OCP) with C#
8/12/2024 8:46:10 AM.
The Open/Closed Principle (OCP) states that software entities should be open for extension but closed for modification. This principle helps in creating flexible and maintainable code by allowing new
Auto Property Initializer: A New Feature of C# 6.0
5/29/2024 8:48:15 AM.
Auto Property Initializer, a feature in C# 6.0, simplifies property initialization by allowing default values to be assigned directly within property declarations. This enhances code readability and r
Dictionary Initializers: A New Feature of C# 6.0
5/29/2024 8:45:27 AM.
Dictionary Initializers, a new feature in C# 6.0, streamline code by enabling concise initialization of dictionaries with key-value pairs. This enhances code readability and reduces verbosity in .NET
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.
Difference Between Raw SQL and Dapper
2/8/2024 8:55:42 AM.
Explore the trade-offs between using raw SQL queries and leveraging Dapper, a micro-ORM for database access in C# development. Delve into performance, code maintainability, and efficiency to make info