In this blog post, you will learn how to send an SMS with Twilio in ASP.Net Core 5 or 3.1 using C#. So we will use Twilio as our SMS service to send an SMS message and automate a response when an SMS message is received. Twilio’s SMS API helps you add robust messaging capabilities […]
How to call C# function from SQL Server
In this blog post, you will learn how to call the C# function from SQL Server 2019. Sometimes we have a requirement like execute C# methods from SQL Server Stored Procedures or Triggers and Microsoft SQL Server does provide that feature. Keep reading on Interview Questions on SQL Server Execute C# Method from SQL Server Let’s […]
Difference between Boxing and Unboxing in C#.Net
In this blog post, I will explain one of the most frequently asked c# interview questions about what is the difference between boxing and unboxing in c# with example. In C# we have two kinds of data types, value types, and reference types. Value type stores the value itself, whereas the reference type stores the […]
C# Serialize Object to JSON Newtonsoft
In this blog post, you will learn how to serialize and deserialize JSON objects using the Newtonsoft library with an example in C#. Keep reading on How to Convert JSON to Datatable in C# What is JSON? JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write and […]
What is the difference between abstract class and interface in C#
In this article, I will answer from one of the most frequently asked C# Interview Questions: what is the difference between abstract class and interface in C#. Keep reading on How to Convert JSON to Datatable in C# Difference between Interface and Abstract Class Abstract Class Interface An abstract class contains at least one abstract member […]
C# Interview Questions for Experienced Professionals
In this blog post, I will share frequently asked oops interview questions c# and c# interview questions and answers for experienced and freshers to get the right job. Find the list below:- Keep reading on Interview Questions on .NET Framework, Interview Questions on ASP.NET MVC OOPs Interview Questions in C# Introducing C#.Net What is C#? What features […]
How to read and display RSS feed in ASP.NET C#
In this blog post, you will learn the best way to read and display RSS feeds in asp.net c# website. Keep reading on How to Send Email in ASP.Net VB, ASP.NET MVC full Ajaxify and Bootstrap Grid with Crud Operation. What is RSS feeds? RSS stands for Rich Site Summary or somewhere known as Really Simple […]
How to check if dropdown list contains value in C#
In this blog post, I will share a quick tip that showcases you the best way to check if the dropdown list contains a value or check if dropdownlist is empty in C#. Previously I have explained How to get html textbox value in ASP.Net Check if dropdown has selected value C# ASP.Net DropDownList represents a […]
Convert Byte Array to Image and Save in C#
In the following example, I will demonstrate how to convert byte array to image and save in folder c# and vise Versa. It is very useful in many scenarios because byte arrays can be easily compared, compressed, stored, or converted to other data types. How to convert byte array to image in c# Recently I […]