Naming Convention in C# with Examples

Naming Convention in C# with Examples

In the world of programming, the naming convention is a set of rules to follow as you decide what to name your identifiers such as class, variable, constant, method, etc. Consistent naming conventions can make your code more understandable and maintainable by conveying the role and purpose of the identifier in an efficient manner. This … Read more >>

C#.NET Enum Naming Conventions With Examples

c# enum naming convention uppercase

Enums are one of the important concepts of C#.Net programming language, in this C#.Net tutorial, we will discuss, C#.NET Enum Naming Conventions with a few examples. Enums are a distinct type consisting of a set of named constants called the enumerator list. They are used to assign names to the integral constants which make a … Read more >>

Combobox naming convention in c#.net with examples

Combobox naming convention in c#.net

In this tutorial, we will focus on the naming conventions specifically for ComboBoxes in C#.NET. We will see, how to provide combobox naming conventions in C#.Net with an example. ComboBoxes are versatile and widely used controls in C#.NET Windows Forms applications, allowing users to select from a list of options presented in a dropdown menu. … Read more >>

C#.Net Fields Naming Conventions [Best Practices With Examples]

C#.Net Fields Naming Conventions

Understanding and following naming conventions in any programming language is crucial. It aids in code readability, maintainability, and overall code quality. In C#, there are specific conventions that developers are advised to follow. This tutorial will guide you through C#.Net fields naming conventions, supplemented with examples. Recently, I was working on a C#.Net windows forms … Read more >>

C#.NET Method Naming Conventions [Complete Guide]

c#.net method naming convention

In this C#.Net tutorial, we will discuss a complete guide on the c#.net method naming conventions. We will see, method naming conventions in C#.Net related to: C#.net method naming conventions A naming convention is a set of rules for choosing the character sequence to be used for identifiers in code. Consistent naming conventions enhance the … Read more >>

How to create a SOAP API request with Username Token in .Net

How to create a SOAP API request with Username Token in .Net

This c#.net tutorial explains, how to create a SOAP API request with user name token in .Net while connecting to a web service. Create a SOAP API request with Username Token in .Net Suppose I have a Web service URL from which I want to retrieve the data from outside organizations. https://15.32.54.09:80/enjoySharePoint_HTTPRouter/enjoySharePointWebservice Here I am … Read more >>

How to create a GUID in C#.Net [With Video Tutorial]

How to create a GUID in C#.Net

In this C#.Net tutorial, we will discuss how to create a GUID in C#.Net programmatically as well as using Visual Studio 2017/2019/2015. Sometimes you may need to pass a GUID to a function or maybe sometimes, you need to create a GUID and pass the GUID at runtime. Here I will show you both the … Read more >>

How to create a folder if not exist in C#.Net

How to create a folder if not exist in C#.Net

In this C#.Net tutorial, we will discuss how to create a folder if not exist in C#.Net. I got a requirement to create a folder if the folder does not exist using C#.Net in an asp.net web application. Create a folder if not exist in C#.Net C#.Net provides a call known as System.IO.Directory.CreateDirectory which we … Read more >>