Click here to Skip to main content
Click here to Skip to main content

Some practices to write better C#/.NET code

By , 3 Mar 2013
 
Prize winner in Competition "Best overall article of February 2013"
Prize winner in Competition "Best C# article of February 2013"

Introduction

Developers always love to fight about coding standards. But it is very vital to follow coding standards to achieve consistency throughout the project or code. All should be of the same mind that conventions are very influential. I will show some good practices that i have learned during my professional years, those are lower level but very important for all levels.  

Quick Test   

Let us demonstrate a FizzBuzz example. The FizzBuzz test is to write a program that goes through the numbers 1 to 100. For every multiple of 3, the program should output "Fizz" and for every multiple of 5 it should output "Buzz". If both above conditions are met it should output "FizzBuzz". If none of the above conditions are met, it should just output the number.

Example 1:
public void Test()
       {
           for (int i = 1; i < 101; i++)
           {
               string Output = "";
               if (i % 3 == 0) { Output = "Fizz"; }
               if (i % 5 == 0) { Output += "Buzz"; }
               if (Output == "") { Output = i.ToString(); }
               Console.WriteLine(Output);
           }
       }
What do you think ? Do we need to make the code better?
Example 2:
public void Check()
       {
           for (int i = 1; i <= 100; i++)
           {
               string output = "";
               if (i % 3 == 0) { output = "Fizz"; }
               if (i % 5 == 0) { output += "Buzz"; }
               if (output == "") { output = i.ToString(); }
               Console.WriteLine(output);
           }
       } 

What do you think now ? Do we need to make the code even better?

Ok, let me help to make it better. Naming thing is one of the hardest job we have as a software developer. Because we spend a lot of time naming things, there are so many things to name properties, methods, classes, files, projects etc. We should spend some energies for naming things because names can be meanings. Adding meaning to code is readability all about.

     public void DoFizzBuzz()
       {
           for (int number = 1; number <= 100; number++)
           {
               var output = GetFizzBuzzOutput(number);
               Console.WriteLine(output);
           }
       }
 
     private static string GetFizzBuzzOutput(int number)
       {
           string output = string.Empty;
           if (number%3 == 0)
           {
               output = "Fizz";
           }
           if (number%5 == 0)
           {
               output += "Buzz";
           }
           if(string.IsNullOrEmpty(output))
           {
               output = number.ToString();
           }
           return output;
       }
What do you think now? Is this better than previous examples ? Is it more readable?

What is better Code?

Write code for People First, Computers Second. Readable code doesn't take any longer to write than confusing code does, at least not in the long run. It’s easier to be sure your code works, if you can easily read what you wrote. That should be a sufficient reason to write readable code. But code is also read during reviews. Code is read when you or someone else fixes an error. Code is read when the code is modified. Code is read when someone tries to use part of your code in a similar project or different project but similar feature or part of a feature. 

“ What if you just writing code for yourself ? Why should you make it readable ? ”

Ok, the major reason behind writing readable is , a week or two from now you’re going to be working on another project. What will happen when any other HUMAN needs to fix an error on that project? I can guarantee you that you will also lost within your own horror code.


From my point of view a better should carried out the following characteristics:

  • Code that is easy to write , modify and extend
  • Code that is clean and talks/convey meaning 
  • Code that has values and cares about quality 

So, write with the human reader in mind while satisfying the needs of the machine to the degree necessary.

How can you improve the Readability? 

First You have to read other peoples code and figure out what is good and what is bad within that code. What makes you easy to understand and what makes you feel more complicated. Then apply those things to your own code. Finally you need sometime, some experience and you need some practice to improve the readability of your code. It is very hard but obvious to implement standards in any software company, through methods like Trainings, Peer Code Reviews, Introducing automated code review tools etc. Most popular tools are as follows:

FxCop is a tool that performs static code analysis of .NET code. It provides hundreds of rules that perform various types of analysis.

StyleCop is an open source project that analyzes C# source code to enforce a set of style and consistency rules. It can be run from inside of Visual Studio or integrated into an MSBuild project. StyleCop has also been integrated into many third-party development tools.

JetBrains ReSharper is a renowned productivity tool that makes Microsoft Visual Studio a much better IDE. Thousands of .NET developers worldwide wonder how they’ve ever lived without ReSharper’s code inspections, automated code refactoring, blazing fast navigation, and coding assistance.

What are Conventions?

According to Wikipedia "Coding conventions are a set of guidelines for a specific programming language that recommend programming style, practices and methods for each aspect of a piece program written in this language. These conventions usually cover file organization, indentation, comments, declarations, statements, white space, naming conventions, programming practices, programming principles, programming rules of thumb, architectural best practices, etc. These are guidelines for software structural quality. Software programmers are highly recommended to follow these guidelines to help improve the readability of their source code and make software maintenance easier. Coding conventions are only applicable to the human maintainers and peer reviewers of a software project. Conventions may be formalized in a documented set of rules that an entire team or company follows, or may be as informal as the habitual coding practices of an individual. Coding conventions are not enforced by compilers. As a result, not following some or all of the rules has no impact on the executable programs created from the source code."

You should be able to tell the difference between a property, local variable, method name, class name etc. because they use different capitalization conventions. These type of conventions has values. You will be able to get lots of guidelines and conventions over internet. So find a convention or build your own and stick with it.

The source of the following (Design Guidelines for Developing Class Libraries) was developed by the Microsoft special interest group. I just made some addons.

Capitalization Conventions 

Below are some examples of our C# coding standards, naming conventions, and best practices. Use these according to your own needs. 

Pascal Casing 

The first letter in the identifier and the first letter of each subsequent concatenated word are capitalized. You can use Pascal case for identifiers of three or more characters.

Camel Casing

The first letter of an identifier is lowercase and the first letter of each subsequent concatenated word is capitalized.


Ref. Capitalization Rules for Identifiers

Example of some Naming Conventions Guidelines

You will find enough resources over internet. I am just highlighting some of my favorites among them

C# Coding Conventions
C# Coding Guidelines
C# Coding Standards and Best Programming Practices
C# Coding Standards and Naming Conventions

I am providing some basic level examples below but as I already mentioned, find a good convention that fits for you and stick with it.

DO use PascalCasing for class names and method names.

public class Product
{
    public void GetActiveProducts()
    {
      //...
    }
    public void CalculateProductAdditinalCost()
    {
        //...
    }
}
DO use camelCasing for method arguments and local variables.
public class ProductCategory
{
  public void Save(ProductCategory productCategory)
   {
       // ...
   }
}  
DO NOT use Abbreviations
// Correct
ProductCategory productCategory;
 
// Avoid
ProductCategory prodCat;
DO NOT use Underscores in identifiers
// Correct
ProductCategory productCategory;
 
// Avoid
ProductCategory product_Category; 
DO prefix interfaces with the letter I.
public interface IAddress
{
 
}
DO declare all member variables at the top of a class, with static variables at the very top.
public class Product
{
    public static string BrandName;
 
    public string Name{get; set;}
    public DateTime DateAvailable {get; set;}
 
    public Product()
    {
        // ...
    }
}
DO use singular names for enums. Exception: bit field enums.
public enum Direction
{
    North,
    East,
    South,
    West
}
DO NOT suffix enum names with Enum
//Avoid
public enum DirectionEnum
{
    North,
    East,
    South,
    West
} 

Why we need Conventions?

Programmers on large projects sometimes go overboard with conventions. They establish so many standards and guidelines that remembering them becomes a full-time job. The computer doesn’t care whether your code is readable. It’s better at reading binary machine instructions than it is at reading high-level-language statements.

Conventions offer several specific benefits. They let you take more for granted. By making one global decision rather than many local ones, you can concentrate on the more important characteristics of the code.

  • They help you transfer knowledge across projects
  • They help you learn code more quickly on a new project.
  • They emphasize relationships among related items.
You should write readable code because it helps other people to read your code. Naming thing is one of the hardest job we have as a software developer. Because we spend a lot of time naming things, there are so many things to name properties, methods, classes, files, projects etc. We should spend some energies for naming things because names can be meanings. Adding meaning to code is readability all about.

So it will help you better sleep at night. 

 

Top Rules Developer Should Follow

Keep Class Size Small

I have seen and written some gigantic  classes. But unfortunately those were never turns out well. Later I found the reason that is, those large classes try to do too many things. That violates the Single Responsibility Principle. S in SOLID (Object Oriented Design).

“The single responsibility principle states that every object should have a single responsibility, and that responsibility should be entirely encapsulated by the class. All its services should be narrowly aligned with that responsibility.”

Or

According to Martin’s definition :"THERE SHOULD NEVER BE MORE THAN ONE REASON FOR A CLASS TO CHANGE."

 

Why was it important to separate these two responsibilities into separate classes? Because each responsibility is an axis of change. When the requirements change, that change will be manifest through a change in responsibility amongst the classes. If a class assumes more than one responsibility, then there will be more than one reason for it to change. If a class has more then one responsibility, then the responsibilities become coupled. Changes to one responsibility may impair or inhibit the class’ ability to meet the others. This kind of coupling leads to fragile designs that break in unexpected ways when changed.

Avoid Obsolete Comments

Let us start with Obsolete Comments. According to Robert C. Martin :

"A comment that has gotten old, irrelevant, and incorrect is obsolete.  Comments get old quickly.  It is best not to write a comment that will become obsolete.  If you find an obsolete comment, it is best to update it or get rid of it as quickly as possible.  Obsolete comments tend to migrate away from the code they once described.  They become floating islands of irrelevance and misdirection in the code."

This is topic create some interesting conversations among all level of developers. Try to avoid comments on individual method or short class. Because most comments i have ever seen is trying to describe the purpose/intentions. Some cases comments are meaningless. Developers writes comments to increase the readability & maintainability . Make sure your comments are not making any noise. It will be great if you could name a method more meaningful instead of comments. I am suggesting because method names are more affective than comments. Most of the comments are meaningless noise. Let us check comments below:

//ensure that we are not exporting
 //deleted products
  if(product.IsDeleted && !product.IsExported )
    {
       ExportProducts = false;
    } 
// This is a for loop that prints the 1 million times
        for (int i = 0; i < 1000000; i++)
        {
            Console.WriteLine(i);
        } 

If we name the method like CancelExportForDeletedProducts() instead of comments what will happen? So, method names are more affective than comments. Methods execute and they are real. But comment is good for some cases like, when visual studio will take comments for creating an API documentation and those comments are different, you can use "///" for those comments so that other developers can get intelligence of API or Library. 

I am NOT telling you that avoid comment is a must for all the times. According to Kent's oral tradition point goes more to large-scale comments about how the whole thing works, not to individual method comments. If comment is trying to describe the purpose/intentions then it is wrong. If you look at thickly commented code, you will notice that most of those comments are there because the code is bad. Please read the following books for further detail: 

  • "Professional Refactoring in C# & ASP.NET" by Danijel Arsenovski 
  • "Refactoring: Improving the Design of Existing Code" by Martin Fowler, Kent Beck, John Brant, William Opdyke, don Roberts

Avoid Unnecessary Regions in Class

Regions are a feature of VS that allow you to surround blocks of code. It could be a single or multiple methods. The region exists because it is easier to navigate around the large file. The regions are used to hide ugly code or class that have exploded in size . If a class does too many things it also violates the Single Responsibility Principle. So next time whenever you will think for adding a new region to your file take step back and ask that is it possible to separate your region into a separate class.

Keep Method Short

The more lines of code in a method the harder it is to understand. Everyone recommends 20-25 lines of code is ok. But some geeks prefer 1-10 lines for safety, this their personal preference. There is no hard and fast rule. Extract Method is one of the most common refactoring. If you consider a method that is too long or needs a comment to understand its purpose. You can apply Extract Method there with little effort. People always keep asking on the length for a method. But length is not the issue. When you are dealing with complex methods, keeping track of all local variables can be complicated and time-consuming. Where extracting a method can be a real time-saver. You can use the Visual Studio extract method which will track which variables are passed to a new method, which are returned by the method’s return value as output parameters.

Using ReSharper

Using Microsoft Visual Studio

 

For more detail on each step, please navigate the msdn link.

According to Refactoring: Improving the Design of Existing Code by Martin Fowler, Kent Beck (Contributor), John Brant (Contributor), William Opdyke, don Roberts 

"Extract Method is one of the most common refactoring I do. I look at a method that is too long or
look at code that needs a comment to understand its purpose. I then turn that fragment of code
into its own method.
I prefer short, well-named methods for several reasons. First, it increases the chances that other
methods can use a method when the method is finely grained. Second, it allows the higher-level
methods to read more like a series of comments. Overriding also is easier when the methods are
finely grained.
It does take a little getting used to if you are used to seeing larger methods. And small methods
really work only when you have good names, so you need to pay attention to naming. People
sometimes ask me what length I look for in a method. To me length is not the issue. The key is
the semantic distance between the method name and the method body. If extracting improves
clarity, do it, even if the name is longer than the code you have extracted
"

Avoid Too Many Parameters  

Declare a class instead of too many parameters. Creating a class that puts all these parameters together. This is generally a better design and valuable abstraction.

//avoid
public void Checkout(string shippingName, string shippingCity, string shippingSate, string shippingZip, string billingName, string billingCity, string billingSate, string billingZip)
       {
 
       }  
//DO
public void Checkout(ShippingAddress shippingAddress,BillingAddress billingAddress)
        {
 
        } 

We should introduce class instead of all parameters.

Avoid Complex Expressions

if(product.Price>500 && !product.IsDeleted && !product.IsFeatured && product.IsExported)
          {
             // do something
          } 

Complex expression have some meaning behind them it is just hidden by those multiple expressions. We can Encapsulated the complex expression into that object by using a property. That code will be easier to read. 

Consider Warnings as Errors


If you notice the code you will find a variable that was declared but never used. Normally if we build the project we will get a warning and we can run our project without any error. But we should remove warning as much as possible. So setup your build to treat warning as Errors like the following steps: 




 

Avoid Multiple Exit Points

This rule is very easy to follow. Developer should try to maintain single exit point and entry point.
 //avoid
         if(product.Price>15)
           {
               return false;
           }
           else if(product.IsDeleted)
           {
               return false;
           }
           else if(!product.IsFeatured)
           {
               return false;
           }
           else if()
           {
               //.....
           }
           return true;
 //DO
       var isValid = true;
           if(product.Price>15)
           {
               isValid= false;
           }
           else if(product.IsDeleted)
           {
               isValid= false;
           }
           else if(!product.IsFeatured)
           {
               isValid= false;
           }
           return isValid; 

You can imagine 4 exit points scattered around 20- 30 lines of code.That makes you more harder to understand and see what is happening inside the method and what will execute and when will execute.

I got too many responses, some agreeing but mostly disagreeing that it was a good  "standard" to enforce. To find out the potentiality I did some unit testing and found that for complex method that have multiple exit points usually have a set of tests for each of those paths. Once work is done, get the heck out of there isn't always possible because sometime you need to clean up your resources as well.

if( BADFunction() == true)
 {
    // expression
    if( anotherFunction() == true )
    {
     // expression
     return true;
    }
    else
    {
         //error
    }
 }
 else
 {
    //error
 }
 return false;
  if( !GoodFunction())
 {
    // error.
    return false
 } 
     // expression
 if( !GoodFunction2())
 {
    //error.
    return false;
 }
 // more expression
 return true; 

Please read Controlling Loops chapter from the book "Code Complete" by Steve McConnell for further detail clarification on Multiple Exit Points.

Assertion    

An assertion is code that’s used during development—usually a routine or macro—that allows to check itself as it runs.True means everything is operating as expected. False means it has detected an unexpected error in the code.An assertion usually takes two arguments: a Boolean expression that describes the assumption that’s supposed to be true and a message to display if it isn’t. 

Assertions are especially useful in large, complicated and in high reliability system.

Example: If a system assumes that there will be maximum 100,000 user records, the system might contain an assertion that the number of records is less than or equal to 100,000. So assertion will be silent within that range. If it encounters more than that records,it will loudly “assert” that there is an error in the program.

Checking Loop Endpoints 

A single loop usually has three cases of interest: the first case, an arbitrarily selected middle case, and the last case.If you have any special cases that are different from the first or last case, check those too. If the loop contains complex computations, get out your calculator and manually check the calculations.

Conclusion

It is obvious to implement standards in any software company according to organizational behavior, project nature and domain. So I would like to repeat "Find a convention and stick with it." .

If you think I missed any prominent guideline,please leave that in the comments section. I’ll try to include that in the main post. Coding For Fun.   

Article Update Log

4 March 2013: Content updated "Avoid Obsolete Comments"

1 March 2013 : Content added "Avoid Obsolete Comments"

1 March 2013 : Content added "Try to Avoid Comments" 

28 Feb. 2013: Added Keep Class Size Small

15 Feb. 2013: Content and reference added.

10 Feb. 2013: Content added (Keep Method Short) 

9 Feb. 2013: Content and Example added (Keep Method Short)

8 Feb. 2013 : Modified Try to Avoid Comments

8 Feb. 2013 : Content and Code example added (Avoid Multiple Exit Points)

6 Feb. 2013 : Content and reference added.

4 Feb. 2013 : Initial release.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Monjurul Habib
Software Developer (Senior)
Bangladesh Bangladesh
Member
Software Engineer with years of successful records serving mid and large scale .NET applications. Have a wide range of experience working in domestic and international client environment. Expertise in different areas of software development life cycles and Software Architecture. I always love to learn new technologies and share with others.
 
Father of a wonderful, smart kid and passionately in love with my wife and life-partner Smile | :)

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralRe: This might come required reading for my advanced C# classmemberMonjurul Habib25 Mar '13 - 6:18 
GeneralMy vote of 5memberKhaled.Hossain24 Mar '13 - 19:45 
GeneralRe: My vote of 5memberMonjurul Habib24 Mar '13 - 20:52 
GeneralMy vote of 5memberTechnoGeek00120 Mar '13 - 19:01 
GeneralRe: My vote of 5memberMonjurul Habib20 Mar '13 - 21:07 
GeneralMy vote of 5memberUday P.Singh19 Mar '13 - 22:55 
GeneralRe: My vote of 5memberMonjurul Habib20 Mar '13 - 1:02 
GeneralMy vote of 4memberP A N K A J15 Mar '13 - 8:43 
GeneralRe: My vote of 4memberMonjurul Habib17 Mar '13 - 1:43 
GeneralMy non-vote [modified]mentorKeith Barrow15 Mar '13 - 7:18 
GeneralRe: My non-votememberMonjurul Habib17 Mar '13 - 1:22 
GeneralRe: My non-votementorKeith Barrow17 Mar '13 - 6:43 
GeneralRe: My non-votememberMonjurul Habib18 Mar '13 - 10:21 
GeneralRe: My non-votememberRoger Willcocks24 Mar '13 - 21:03 
GeneralRe: My non-votementorKeith Barrow24 Mar '13 - 23:29 
GeneralRe: My non-votememberREDCAT1325 Mar '13 - 2:15 
GeneralRe: My non-votementorKeith Barrow25 Mar '13 - 2:52 
GeneralRe: My non-votememberbwsmith7225 Mar '13 - 10:54 
GeneralRe: My non-votementorKeith Barrow26 Mar '13 - 0:00 
GeneralRe: My non-votememberbwsmith7226 Mar '13 - 6:04 
GeneralRe: My non-votementorKeith Barrow26 Mar '13 - 6:16 
GeneralRe: My non-votememberbwsmith7226 Mar '13 - 6:42 
GeneralRe: My non-votememberREDCAT1325 Mar '13 - 17:40 
GeneralRe: My non-votementorKeith Barrow25 Mar '13 - 22:19 
GeneralRe: My non-votememberREDCAT1326 Mar '13 - 2:09 
GeneralMy vote of 5memberAzziet12 Mar '13 - 20:02 
GeneralRe: My vote of 5memberMonjurul Habib12 Mar '13 - 21:59 
GeneralMy vote of 5memberRenju Vinod12 Mar '13 - 19:07 
GeneralRe: My vote of 5memberMonjurul Habib12 Mar '13 - 21:58 
GeneralMy vote of 5memberMihai MOGA11 Mar '13 - 21:44 
GeneralRe: My vote of 5memberMonjurul Habib12 Mar '13 - 21:58 
GeneralMy vote of 5memberNandakishorerao11 Mar '13 - 18:12 
GeneralRe: My vote of 5memberMonjurul Habib12 Mar '13 - 21:57 
GeneralMy vote of 5memberHassan64405011 Mar '13 - 8:52 
GeneralRe: My vote of 5memberMonjurul Habib12 Mar '13 - 21:57 
GeneralMy vote of 5memberMaksud Saifullah Pulak10 Mar '13 - 22:15 
GeneralRe: My vote of 5memberMonjurul Habib12 Mar '13 - 21:56 
GeneralMy vote of 3memberJosh_T10 Mar '13 - 10:32 
GeneralRe: My vote of 3memberMonjurul Habib20 Mar '13 - 9:29 
GeneralMy vote of 2memberBillWoodruff8 Mar '13 - 19:06 
GeneralRe: My vote of 2memberMonjurul Habib20 Mar '13 - 9:29 
GeneralRe: My vote of 2memberkjmcsd25 Mar '13 - 6:53 
QuestionIt's a nice enough article, but 179 votes??mvpEspen Harlinn8 Mar '13 - 11:43 
AnswerRe: It's a nice enough article, but 179 votes??mvpFlorian Rappl11 Mar '13 - 23:18 
AnswerRe: It's a nice enough article, but 179 votes??mvpColin Eberhardt13 Mar '13 - 3:02 
AnswerRe: It's a nice enough article, but 179 votes??memberMonjurul Habib20 Mar '13 - 9:51 
GeneralRe: It's a nice enough article, but 179 votes??mvpEspen Harlinn20 Mar '13 - 10:41 
GeneralRe: It's a nice enough article, but 179 votes??memberMonjurul Habib20 Mar '13 - 10:59 
GeneralRe: It's a nice enough article, but 179 votes??mvpEspen Harlinn20 Mar '13 - 11:11 
GeneralRe: It's a nice enough article, but 179 votes??memberMonjurul Habib20 Mar '13 - 11:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130513.1 | Last Updated 3 Mar 2013
Article Copyright 2013 by Monjurul Habib
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid