Related resources for c sharp coding
  • Printing All Subsets Of A Given Set Or The Power Set Problem8/24/2023 9:01:04 AM. The aim is simply to print all the possible subsets of a given set. There is not naive simple loop approach that I could come up with to solve this problem, so we would tackle it here using the second
  • Writing Better Code -- Keepin' it Cohesive7/20/2023 7:12:26 AM. One of the aspects of code quality we can look at is cohesion. If code is highly cohesive it is also much more testable, reusable, readable and maintainable (all the good things in life). Likewise,
  • C# Naming Conventions6/8/2023 7:25:55 AM. C# naming conventions. In this article you will learn about C# coding standards naming conventions for best practice when you are developing an application.
  • C# Best Coding Guidelines6/7/2023 9:46:06 AM. In this article you will get to know about some Best Coding Guidelines in C#.
  • C# Coding Standards 😎3/30/2022 10:29:30 AM. In this article, we’ll learn how we can optimize lines of code, which we should follow to write better, more clear code
  • NDepend - A Complete Static Code Analysis Tool8/20/2020 7:09:59 AM. A few months ago, I came across one static code analysis tool named NDepend and found this to be the next level of static code analysis
  • Writing Effective C# Code3/16/2017 4:38:16 PM. This article explains how to write better C# code to make it effective and maintainable.
  • How to become a C# Programmer9/12/2015 8:18:55 AM. So you want to be a C# programmer? In this article, I will try to answer this question with some real world examples.
  • Equality Implementation in C#3/31/2015 6:37:36 AM. In this article you will learn Equality Implementation in C# programming.
  • Coding Better: Programming From the Outside In. Part I9/15/2014 4:58:21 AM. Modeling an API for a domain is a difficult task. The trick is to get the correct level of encapsulation/abstraction while making the API easy to understand and consume. If we can model our domains at the same level that we understand them linguistically then we are 90% of the way there. This article discusses a programming methodology by which we can build a concise interface that will provide a consistent level of abstraction and is easy to code against.
  • C# Coding Standards12/6/2013 7:45:26 PM. Being a novice or a professional often we wonder how to write effective, maintainable and extendible code. This article define guidelines to enforce consistent style and formatting and help developers avoid common pitfalls and mistakes.
  • Single File Mode in ASP.NET6/4/2009 12:22:07 PM. This article discusses step by step procedure of how to create a Single File Mode example in ASP.NET using Visual Studio 2005 / 2008.
  • Coding Better: Programming From the Outside In. Video Part I1/26/2009 12:00:00 AM. Modeling an API for a domain is a difficult task. The trick is to get the correct level of encapsulation/abstraction while making the API easy to understand and consume. If we can model our domains at the same level that we understand them linguistically then we are 90% of the way there. This article discusses a programming methodology by which we can build a concise interface that will provide a consistent level of abstraction and is easy to code against.