Installing .NET SDK in Linux Mint and debugging C# code using VS Code
In this article, we will discuss about installing .NET SDK on Linux Mint workstation and debugging C# code in Visual Studio Code.
Articles related to .Net technologies like ASP.NET, C#, VB.NET, etc..
In this article, we will discuss about installing .NET SDK on Linux Mint workstation and debugging C# code in Visual Studio Code.
Generating random number in C# is required in several situations. Let’s see how to generate random numbers in C# with example.
Let us see few simple ways to prevent VS Code from replacing an already opened preview tab with a subsequently opened one.
Learn how to decode ASCII to text in C# with an example. Understand the process of converting ASCII-encoded data back into readable text using the Encoding.ASCII.GetString() method.
In C#, developers have access to a wide range of encoding options, including the popular American Standard Code for Information Interchange (ASCII). In this article, we will see how to encode a string to ASCII in C#.
This article intends to provide helpful information to make your search for a suitable development environment easier by describing the benefits and drawbacks of using .NET as a software development platform.
If you are not taking precautions while using connection pooling, you may encounter errors. Here are a few of the common errors and ways to prevent connection pool problems.
Here is the sample code to calculate mode in C# for a set of numbers in an array. This method will get you single mode or multi modes.
It is easy to calculate mean in C#, as arithmetic mean is just the average of the collection of numbers. Here is the sample code.
In this article we will see how to calculate median in c# .Net by coding the median algorithm by yourself and by using a 3rd party library.
Error CS1069 The type name ‘SqlConnection’ could not be found in the namespace ‘System.Data.SqlClient’. This type has been forwarded to assembly ‘System.Data.SqlClient, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a’ Consider adding a reference to that assembly.
Today, let us see how to execute an SQL Server Stored Procedure from a C# program.
Lately I got questions asking for a quick lightweight tool to compare code files. Even though there are several tools available in the market, I use Visual Studio Code to quickly compare contents of two files.
Trick for using bootstrap table with GridView in ASP.NET web forms. You can use bootstrap table classes in GridView in web form with some additional setting.
How to force a .Net application to run as administrator on windows? Here is step by step illustration to force a dot net client server application to run as administrator and the trick to bypass UAC prompt while launching it.
How to return multiple values from a function in c#. Here are few of the methods for returning multiple values from a c# function with examples.
How to combine URLs or URIs in ASP.NET? Best way for joining or combining URLs or URIs in razor or c# in ASP.NET.
How to create a .CSV file in C# ? Creating csv file from c# application is quiet simple. Here are the methods to do it. Write data into csv file in c#.
Solution for HTTP Error 404.13 – Not Found: The request filtering module is configured to deny a request that exceeds the request content length.
How to activate ASP.NET Core Razor Tag Helper IntelliSense in Visual Studio 2017? Steps to install Razor Language Service extension for activating IntelliSense in Tag Helpers.