| by Arround The Web

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.

Share Button
Read More
| by Arround The Web

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.

Share Button
Read More
| by Arround The Web

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.

Share Button
Read More
| by Arround The Web

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.

Share Button
Read More
| by Arround The Web

Asynchronous Programming in C#

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

Share Button
Read More
| by Arround The Web

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.

Share Button
Read More
| by Arround The Web

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.

Share Button
Read More
| by Arround The Web

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.

Share Button
Read More
| by Arround The Web

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.

Share Button
Read More
| by Arround The Web

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.

Share Button
Read More
| by Arround The Web

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.

Share Button
Read More
| by Arround The Web

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.

Share Button
Read More
| by Arround The Web

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.

Share Button
Read More
| by Arround The Web

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.

Share Button
Read More
| by Arround The Web

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.

Share Button
Read More
| by Arround The Web

LINQ Distinct() Method

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

Share Button
Read More
| by Arround The Web

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.

Share Button
Read More
| by Arround The Web

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.

Share Button
Read More
| by Arround The Web

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.

Share Button
Read More
| by Arround The Web

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.

Share Button
Read More