top of page
Search
The Tech Platform
Feb 24, 2022
What are Decorators in TypeScript?
A Decorator is a special kind of declaration that can be applied to classes, methods, accessor, property, or parameter. Decorators are...
The Tech Platform
Feb 24, 2022
Building GraphQL API With .Net 5 — EF Core And Hot Chocolate
Introduction GraphQL is an open-source query language, originally developed by Facebook. It was in the year 2012 that Facebook chose to...
The Tech Platform
Feb 24, 2022
Top 7 competitive programming algorithms every coder must know
Programming is a difficult role, and once you enter it, you will face new challenges and may be required to solve problems that no one...
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 23, 2022
How to Call Event-Stream APIs in Angular
In this post, we will tell you how this API was called in Angular (to refresh inbox when a new mail arrives or a mail is sent to trash in...
The Tech Platform
Feb 18, 2022
IndexOf() in JavaScript
In JavaScript, indexOf() is a string method that is used to find the location of a substring in a string. Because the indexOf() method is...
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 7, 2022
How to Write Clean Code?
Clean Code is easy to understand and easy to change. It is the Code that another developer can Read, Understand , and Write easily. Your...
The Tech Platform
Feb 7, 2022
Azure Blob Storage with .Net 5
Azure Blob Storage Azure Blob storage is Microsoft’s object storage solution for the cloud. Blob storage is optimized for storing massive...
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#...
bottom of page