Named Arguments in C#
Tutorialsrack 07/08/2022 C#
In this article, you’ll learn about what is named arguments in C#. And how you can use named argument in C#.
Read More..In this article, you’ll learn about what is named arguments in C#. And how you can use named argument in C#.
Read More..By default, each parameter of a method is required, but in C# 4.0, Microsoft introduces optional parameters. So in this post, you’ll learn what is an optional parameter in C#. And how can you create and use optional parameters in C#?
Read More..In this article, you will learn how to encode and decode strings with base64 in C#. We will use the Convert.ToBase64String() method to encode the string and Convert.FromBase64String() method to decode the string.
Read More..In this article, you will learn how to check if a DateTime is Null or Not Null or Empty in C#. In this article, we used the two ways to check if the Datetime is Null or Not Null or Empty.
Read More..In this article, you will learn how to get the number of total months between two dates in C#.
Read More..In this article, you will learn how to validate an email address in c#. There are various ways to validate an email address in C#. In this article, we validate the Email address using MailAddress Class and Using Regular Expression.
Read More..In this article, we will learn how to convert DateTime from a specific format to a specific format in C#. I found this way for handling the date conversion from a specific format to a specific format.
Read More..In this article, you will learn the difference between == operator and .Equals() method in C#. Both the == Operator and the .Equals() method is used to compare two value type data items or reference type data items. This article will explain the basic difference between these two.
Read More..In this article, you will learn how to get the total number of days between two dates in c#. In this example, we create the TimeSpan object to calculate the difference between the two Dates.
Read More..In this article, we will learn how to check if the specified column name exists in the DataTable in C# or Not.
Read More..