The best VPN 2023

The Best VPS 2023

The Best C# Book

How to use baget to build nuget private server

How to use baget to build nuget private server

How to use baget to build nuget private server? Almost all languages now provide package management tools, such as JavaScript’s npm, Java’s Maven, and Dart’s pub. The .Net program is of course NuGet. NuGet has been around for many years, and the strange thing is that there are still many people who don’t know.

C# Multi-threaded download file example

C# Multi-threaded download file example

C# Multi-threaded download file example, File download is a common requirement in software development. This article starts from the simplest download method step by step, tells the common problems in the file download process, and gives solutions.

How to use PGO to improve the performance of .NET programs

How to use PGO to improve the performance of .NET programs

How to use PGO to improve the performance of .NET programs, .NET 6 began to introduce PGO initially. PGO is Profile Guided Optimization, which guides JIT how to optimize code by collecting runtime information. Compared with the previous without PGO, it can do more optimizations that were difficult to complete before.

Is C# .net still popular in 2021?

Is C# .net still popular in 2021?

Is C# .net still popular in 2021? Microsoft’s .NET development framework ranked high in recent research about coding bootcamps, or “immersive technology education.”

How to find element by XPath in Selenium?

input

It is common knowledge by now that Selenium is the most frequently used automation testing tool. With its diversity of features, it facilitates various functionalities. One of these is the use of locators to find web elements when testing a website. Among various locators, XPath is especially useful. How to find element by XPath This … Read more

What is headless browser

Headless Browser Testing Using Selenium WebDriver

What is headless browser? headless browser is a browser which doesn’t have a GUI. Headless Browser Testing using Selenium WebDriver.

CPU 100% .NET performance analysis of HIS system

CPU 100% .NET performance analysis of HIS system

CPU 100% .NET performance analysis of HIS system, This is a case of performing performance analysis using the his system developed by .net in a production environment when the CPU is 100%. The post shows how to use windbg to find the performance bottleneck of the .net program. The original source is a post from cnblogs. If you can read Chinese, you can find its link at the bottom of the article.

How to use Kotlin 1.5 new feature Inline classes

How to use Kotlin 1.5 new feature Inline classes

How to use Kotlin 1.5 new feature Inline classes? If you are using Android Studio 4.2.0, IntelliJ IDEA 2020.3 or higher, you will soon receive the Kotlin 1.5 Plugin push. As a major version, 1.5 brings many new features, the most important of which is the inline class.

How ASP.NET Core reads Request.Body

How ASP.NET Core reads Request.Body

If you are a C# developer and apply asp.net core to your project, do you know how ASP.NET Core reads Request.Body? When we use ASP.NET Core to develop projects, we will definitely involve the scene of reading Request.Body, because most POST requests store data in the Http Body. The main thing I use in my daily development is ASP.NET Core, so I often encounter this kind of scene. This post is to share the reading problem of Request.Body.