| by Arround The Web | No comments

How to Convert DateTime to YYYYMMDDHHMMSS Format in C#

To convert a DateTime object to a string in the YYYYMMDDHHMMSS format, use the ToString() method with a custom format string. Read more in this guide.

Read More
| by Arround The Web | No comments

What are Null Reference Types in C#

The null reference types are types in C# that can have a value of null, which indicates that the variable does not reference any object in memory.

Read More
| by Arround The Web | No comments

What are Jagged Arrays in C#

Jagged arrays in C# helps create arrays of arrays with varying row lengths. It can be initialized by specifying the size of each row via the new keyword.

Read More
| by Arround The Web | No comments

How to Use where (Generic Type Constraint)

The “where” constraint is a generic type constraint in C# that allows developers to specify the type parameter that a generic type can represent.

Read More
| by Arround The Web | No comments

Asynchronous Programming in C#

Asynchronous programming allows for the execution of multiple operations simultaneously, without blocking the main thread of the program.

Read More
| by Arround The Web | No comments

Enumeration Types in C#

Enumeration types in C# allow you to define a set of named constants with underlying integral values. Read this guide for more details.

Read More
| by Arround The Web | No comments

Dynamic Arrays in C#

Dynamic arrays in C# are an essential data structure that allows you to create and work with arrays that can change in size during runtime.

Read More
| by Arround The Web | No comments

Delegates in C# – How to Use It

Delegates in C# are object-oriented function pointers that allow you to create a reference to a method or a group of methods with the same signature.

Read More
| by Arround The Web | No comments

C# Set Collection

A set collection is a type of collection in C# that has a group of unique elements, each element in a set collection is distinct, and there are no duplicates.

Read More
| by Arround The Web | No comments

Associating Enums with Strings in C#

To associate an enum with a string, we can use the Description attribute. Further read this guide for detailed information.

Read More
| by Arround The Web | No comments

How to Convert Enum to String in C#

For converting Enum to a string there are two ways: .GetName and through .ToString and. Read more in this guide.

Read More
| by Arround The Web | No comments

C# Bool Type

The bool data type were discussed in this tutorial. Further, we explained the execution of Boolean keywords by performing different programs in visual studio.

Read More
| by Arround The Web | No comments

C# Bitwise Left Shift (<<) Operator

Tutorial on the the left shift (<<) Bitwise operators, their types, and functionalities to shift the number or value by the definite number of bits to the left.

Read More
| by Arround The Web | No comments

C# Conditional logical OR operator

In this guide, we explored the conditional logical ‘OR’ operator (||). With the help of the ‘OR’ operator, things become easy when we have different choices.

Read More
| by Arround The Web | No comments

C# Enumeration

In this guide, we have learned about enumeration, what it is and how we can utilize it in C# language. Enumeration makes the code simple and readable.

Read More
| by Arround The Web | No comments

LINQ Distinct() Method

In this article, we will discuss how to return unique elements through the LINQ Count() function in List data structure.

Read More
| by Arround The Web | No comments

LINQ Count() Function

In this article, we will discuss how to return the total number of values through the LINQ Count() function in List data structure.

Read More
| by Arround The Web | No comments

LINQ Cast() Method

In this tutorial, we discussed the Cast() method. Cast() method in LINQ is used to cast/convert the data type in the existing data source to another data type.

Read More
| by Arround The Web | No comments

C# LINQ ThenByDescending() Method

This article discusses how to order the data based on multiple attributes in descending order using the ThenByDescending() Method() method through LINQ.

Read More
| by Arround The Web | No comments

C# LINQ ThenBy() Method

In this article, we will discuss how to order the data based on multiple attributes in descending order using the ThenBy() Method() method through LINQ.

Read More