top of page
Search
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 4, 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 3, 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 2, 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
Jan 31, 2022
How to properly dispose in AspNetCore application?
The quick answer implies that your AspNetCore aplication is stateless. Meaning that all state that is required for your application to...
The Tech Platform
Jan 28, 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 27, 2022
How to send emails in .Net Core Web API
Sending emails is an integral part of web development and a better way to connect with your users and keep them up to date with...
The Tech Platform
Jan 22, 2022
Arithmetic Operators in C#
Operators are a very useful thing in computing value. While writing a program, you need various types of operators to calculate the...
The Tech Platform
Jan 17, 2022
Which language is best for Web Development?
Web development It refers to the building, creating, and maintaining of websites. It includes aspects such as web design, web publishing,...
bottom of page