NashTech Insights

Microsoft

Posts by categories

Posts by tags

binary, binary system, binary code-8177888.jpg

Common Misconceptions in C# and .NET – Not Understanding Thread Safety.

We will explore the critical topic of thread safety, a concept that demands careful consideration. In the .NET realm, it’s important to note that all instance methods are generally assumed to lack thread safety, while conversely, static methods are presumed to be thread-safe unless explicitly documented otherwise. Let’s delve into an illustrative case where the …

Common Misconceptions in C# and .NET – Not Understanding Thread Safety. Read More »

Docker & ASP.NET Core: Part 1 – Overview

Containers have surged in popularity since Docker’s introduction in 2013. A lot of companies have already incorporated containers into their operational processes, streamlining the deployment, distribution, management, and scalability of their software. Within this article, I will provide insight into containers and the concept of containerization. Furthermore, I will also explain the difference between containers …

Docker & ASP.NET Core: Part 1 – Overview Read More »

Coding on a computer screen

Common Misconceptions in C# and .NET – SQL Injection

In this section, we will address the issue of SQL injections, which is a longstanding that demands utmost caution due to its severe consequences. Let’s examine the problem of SQL injection in detail. Suppose we have a query that retrieves the “city” value from an HTML Form submitted, and we make the decision to directly …

Common Misconceptions in C# and .NET – SQL Injection Read More »