top of page
Search


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 17, 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 9, 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...

The Tech Platform
Feb 5, 2022


C# Generics
Generic is a class which allows the user to define classes and methods with the placeholder. Generics were added to version 2.0 of the C#...

The Tech Platform
Feb 5, 2022


What are Tuple in .NET?
Tuple is a data structure which gives you the easiest way to represent a data set which has multiple values that may/may not be related...

The Tech Platform
Feb 4, 2022


Using ProducesResponseType to write a better Web API actions in .Net Core
Motivation I used to create API actions that return only one type most of the time, for example the GetProduct action would return...

The Tech Platform
Feb 4, 2022


What is IEnumerable, ICollection, IList, and IQueryable in C#?
What is IEnumerable? IEnumerable is an interface, which defines only one method, GetEnumerator. The method returns an IEnumerator...

The Tech Platform
Feb 3, 2022


Introduction to Polymorphism in C#
Polymorphism is the ability of objects of different types to provide a unique interface for different implementations of methods. It is...

The Tech Platform
Feb 2, 2022


Top Programming Languages used by Blockchain Developers
A blockchain is a distributed database that is shared among the nodes of a computer network. As a database, a blockchain stores...

The Tech Platform
Jan 28, 2022
bottom of page
