top of page
Search

The Tech Platform
May 12, 2023
C# .NET Development Powerful Libraries for Developers
C# is a popular programming language within the .NET ecosystem, known for its versatility and robustness in building a wide range of...

The Tech Platform
May 9, 2023
How to Return Multiple Values from a C# function using a Tuple
In C#, a method can return only one value at a time. But what if you want to return multiple values from a method? One way to achieve...

The Tech Platform
May 9, 2023
IComparable vs IComparer Interface In C#
In C#, sorting is a fundamental task that developers encounter frequently. The good news is that C# provides two interfaces, IComparable...

The Tech Platform
May 3, 2023
How to use Left Join in C# LINQ
A left join in C# LINQ is a type of join that returns each element of the first (left) data source, regardless of whether it has any...

The Tech Platform
May 2, 2023
How to Achieve Inner Join in C# LINQ
An inner join in C# LINQ is a query that produces a result set in which each element of the first collection appears one time for every...

The Tech Platform
May 1, 2023
How to Achieve Group By in C# LINQ
Group by in C# LINQ is a query that groups the elements of a sequence according to a specified key selector function. The key can be a...

The Tech Platform
May 1, 2023
How to use Right Join in C# LINQ
A right join in C# LINQ is a type of join that returns each element of the second (right) data source, even if it has no correlated...

The Tech Platform
Apr 26, 2023
Null Handling Techniques in C#
Null values are a common occurrence in real-world data and can lead to errors if not handled properly. In this article, we will explore...

The Tech Platform
Mar 2, 2023
Performance Improvements in .NET 6
Performance improvement in .NET 6 refers to the various enhancements made to the .NET Framework that improve the performance of...

The Tech Platform
Feb 7, 2023
How to use cross-page posting in ASP.NET
What is Cross-Page Posting? Cross-page posting in ASP.NET is a feature that enables you to submit data from one page to another in a web...
bottom of page