Tag Archives: Visual Studio 2019

Security – PVS‑Studio.

The development team comes with this intro: PVS‑Studio is a static analyzer on guard of code quality, security known ad SAST, and code safety. PVS‑Studio detects various errors – typos, dead code, and potential vulnerabilities (Static Application Security Testing, SAST). The analyzer matches warnings to the Common Weakness Enumeration, SEI CERT Coding Standards, and supports… Read More »

C# – First steps with C# and .NET – part 025 .

Refactoring is the process of modifying code in order to make it easier to maintain, understand, and extend, but without changing its behavior., see Wikipedia webpage. If you use an integrated development environment known as I.D.E. then some refactoring commands are present under the refactoring menu. If not, then you need to do it manually.… Read More »

C# – First steps with C# and .NET – part 017 .

This tutorial shows you the base of any structure of the Xamarin project with a short intro into the Xamarin.Essentials install area. Take a look at the next image: First, if the new default project doesn’t have the Xamarin.Essential ( see point 4 on image) then you need to install it with the NuGet Packages… Read More »

C# – First steps with C# and .NET – part 016 .

This tutorial is about starting a mobile project with Xamarin si C#. I used my mobile phone to test the default starting project from Visual Studio 2019. First, you need to install Xamarin with the Visual Studio Installer software. Then start the default project on Visual Studio 2019. Create a new project by select Mobile… Read More »

C# – First steps with C# and .NET – part 013 .

The tutorial for today uses C# with .NET Framework 4.7.2 and is a short intro into the TAP programming area with definitions examples. TAP is the acronym for Task-based Asynchronous Pattern. In the .NET Framework 4.5, the C# compiler is capable of implementing the TAP and this implementing use compiler. You can implement the TAP… Read More »

C# – First steps with C# and .NET – part 012 .

In this tutorial, I will show you how to start using Google Cloud Platform with Visual Studio 2019 and C#. The main goal is to create a Cloud Storage buckets. First, create a console project into your Visual Studio 2019 I.D.E. Open the cloud google.com dotnet webpage and use Try It Free option. This allows… Read More »

C# – First steps with C# and .NET – part 011 .

Today I will show you how can use Dynamic Language Runtime with IronPython. The dynamic language runtime (DLR) is a runtime environment that adds a set of services for dynamic languages to the common language runtime (CLR). The DLR makes it easier to develop dynamic languages to run on the .NET Framework and to add… Read More »

C# – First steps with C# and .NET – part 010 .

The tutorial for today will cover the use of Nuget Package Manager with a known package named NBitcoin. First, open your Visual Studio and create a console project for C#. I used Visual Studio version 2019 for this project. In the right area, you have the Solution Explorer with your project tree list. Select the… Read More »