C# Coding approach | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

C# Coding approach

So when coding, we have our own approach that's different from other people. So my question is, when making an application, does it have an effect? For example my code is 1000 lines long. While the other one can make it with only 100 lines.

25th Apr 2020, 9:32 AM
Lanze Manao
Lanze Manao - avatar
1 Answer
0
Maybe there are many different approaches, but there are also well proven and established guidelines, principles, and best practices, which are usually followed by all developers, like KISS = keep it simple stupid DRY = don't repeat yourself SOLID => this is more complicated to explain but it means how to effectively apply the concepts of object oriented programming in software development. Clean Architecture = segregation of the functional areas of the program Each of these topics have books written about them, and you can research google / wikipedia for more detail. It is very useful to get familiar with all of them, because then you will speak the same language as any professional developer.
25th Apr 2020, 1:22 PM
Tibor Santa
Tibor Santa - avatar