C# has changed from C# 5 to C# 6 and the best standard based practices have also evolved to to make projects more readable. The goal of this series of guides is help you to write cleaner code for your open source C# projects and .NET framework applications that run in a team environment. In such cases, writing good code can be easier for the developers because the code being written is going to be used, managed, and updated by the rest of the developers on the team. Developers who are going to follow the philosophy and coding practices of your individual teams. In these cases, the best approach is to follow the guidelines of the coding teams along with adding design and style to the C# programs in your application projects to make them better for readers. Note that C# compiler doesn't care about the style that you put into the codes, only the performance will be reduced (or increased) by changing the style of the code.
Let’s get deeper into programming C# applications in a way that will make them look simpler, cleaner, and easier for the readers, while at the same time maintaining their performance and efficiency. A few things you should know prior to reading this guide:
Task
object in C#It should be noted that I will not talking about changing the program performance, upgrading the efficiency, or decreasing the time taken by the programs to run. You can improve program performance in a matter of seconds by writing clean C# code, but the following tips do not guarantee that your code will perform better.
You write the code, compiler compiles with no warnings and no errors, the code is fine. But what about if some else wanted to read that code out? What if someone had to upgrade the code later for you or the company you worked for? Have a look at the following code:
1public static void Main(string[] args) {
2 int x = 0;
3 x = Console.Read();
4
5 Console.WriteLine(x * 1.5);
6}
That program works well, there are no errors in the system, and the application also sort of works. But can you tell me what the program does in real life? Here are some, of many, assumptions that could be made:
Which one is real? No one will know. In these cases, it is better to write good code and remember to follow the basics of programming. Have a look at the following code:
1public static void Main(string[] args) {
2 int salary = 0;
3 salary = Console.Read();
4
5 Console.WriteLine(salary * 1.5);
6}
Doesn't this make more sense than the prior code? We can easily say that this code is going to increase the value of the salary. Note how, just by improving the code, we were able to make sure that someone else could make sense of it much faster than before.
In this guide, I won't show you how to follow best principles. Instead, I will start by building on top of what you already have and teach you how to make the best out of your C# programs. I will focus on how to write good C# logic in your applications, so you will see the many benefits that you can gain from the applications by writing programs in this manner and structure. So, let's get started.
C# is an object-oriented programming language. What good would it be to write a set of tips if there is no section for objects themselves? This section will focus on what you should consider before moving forward and writing the new Object()
code in your applications. You must be aware of how C# classes are created and how things collaborate to bring up a small program in your system. For example, have a look at the following code:
1class Person {
2 public int ID { get; set; }
3 public string Name { get; set; }
4 public DateTime DateOfBirth { get; set; }
5 public bool Gender { get; set; }
6}
You may want to create programs that set the values by default, or have them come from a model, or any other database-oriented data source like this source code, that simplifies the way you enter the defaults in the object at the time the object is being created.
1var person = new Person { ID = 1, Name = "Afzaal Ahmad Zeeshan", DateOfBirth = new DateTime(1995, 08, 29), Gender = true };
Instead, try writing the same code in the following way:
1var person = new Person();
2person.ID = 1;
3person.Name = "Afzaal Ahmad Zeeshan";
4// So on.
There is no notable performance improvement to the code here, but the readability of the code can really be improved. If you prefer indentation, have a look here:
1var person = new Person
2{
3 ID = 1,
4 Name = "Afzaal Ahmad Zeeshan",
5 DateOfBirth = new DateTime(1995, 08, 29),
6 Gender = true
7};
This also has the indentation, but it adds a bit more clarification to the readability to your C# code. Although, these do the same thing, the suggested code makes the code more readable and concise.
Continue on to the next guide in this series for Tips for Writing Better C# Code.