top of page
Search
The Tech Platform
Mar 7, 2022
Interoperability Feature in C#?
Interoperability is all about the ability of a system to communicate with components of another system. To understand it in detail, let’s...
The Tech Platform
Mar 2, 2022
How to Send WhatsApp API using C#
Get Started with Whatsapp API Ultramsg account is required to run examples. Create an Account if you don’t have one. go to your instance...
The Tech Platform
Feb 23, 2022
Extension Method in C#
Extension methods are static methods, which are called as if they were instance methods on the extended type. With Extension methods, you...
The Tech Platform
Feb 22, 2022
Difference between AddScoped and AddTransient in .NET 6
To access the .NET Core DI functionality, your app must have references to Microsoft.Extensions.DependencyInjection NuGet package....
The Tech Platform
Feb 18, 2022
Top 5 Programming Languages for Automation Testing
Automation testing is the process of testing software and other tech products to ensure it meets strict requirements. Essentially, it’s a...
The Tech Platform
Feb 17, 2022
HttpPut Or HttpPatch in ASP.Net Core ?
The HTTP PUT request method creates a new resource or replaces a representation of the target resource with the request payload. The HTTP...
The Tech Platform
Feb 17, 2022
Memory Management in Operating System
Memory Management is the process of coordinating and controlling the memory in a computer, Blocks are assigning portions that are...
The Tech Platform
Feb 9, 2022
Checked and Unchecked Exception in Java
Read - Exception Handling in Java Checked Exception These are the exceptions that are checked at compile time. If some code within a...
The Tech Platform
Feb 9, 2022
SOLID Principles in Programming
SOLID principles are object-oriented design concepts relevant to software development. SOLID principles form the fundamental guidelines...
The Tech Platform
Feb 5, 2022
Consume Web API with C# HttpClientFactory
Sometimes we need to integrate an external API into our code even as a backend service and not just the frontend integrating with the UI...
bottom of page