The Tech PlatformSep 25, 2021C#Constructors in C#In C#, a constructor is a special type of method that is automatically executed when an object of a class is created. It is used to...
The Tech PlatformSep 2, 2021C#What Is yield and How Does It Work in C#?C# capabilities keep expanding from year to year. New features enrich software development. However, their advantages may not always be...
The Tech PlatformSep 2, 2021.NETHow to bind [FromRoute] and [FromBody] into one model in .NET 5There are several ways in .NET 5 Web Api to bind request data into a model. Attributes such as [FromBody] or [FromRoute] can be used for...
The Tech PlatformJul 13, 2021.NETSend multi-part content to an API from a .NET Core API (.NET 5.0)Scenario — You are developing a web API that takes form data in its post method. And from that API, you need to call another API that...
The Tech PlatformMar 5, 2021C#6 Different Star Pattern Programs in C#Patterns are the repeated decorative design. There is a simple code to write patterns in C#. We can write code to print different types...