Best of C Programming — December 2023
- 1
- 2
- 3
InfoWorld·2y
The best new features in Microsoft .NET 8
Microsoft .NET 8 has arrived with a plethora of new features and enhancements. Highlights include improvements in the garbage collector, JSON serialization and deserialization, time abstraction, cryptography, compression, native AOT compilation, code generation, and performance. Additional resources are available for further reading.
- 4
- 5
- 6
Code Maze·2y
Using the CLI to Build and Run .NET Applications
This article explores how to use the CLI to build and run .NET applications. It covers creating a new project, running the application, building the application, adding package references, publishing the project, creating a solution, and testing the solution using the CLI.
- 7
- 8
- 9
Code Maze·2y
How to Get an Access Token from HttpContext in ASP.NET Core
This article explores different ways to get an Access Token from HttpContext in ASP.NET Core. It explains the role of access tokens in maintaining secure communication and outlines the Headers and GetTokenAsync approaches for extracting the access token. It also discusses how access tokens can be accessed from HttpContext in a controller or via middleware. The article concludes by emphasizing best practices and security considerations for handling access tokens.