top of page
Search


Why and How String is Immutable in C#
Strings and Immutability In the programming world, a string is an array of System.Char characters that when put together represent text....

The Tech Platform
Oct 29, 2021


What is CLR and Its Execution in C#
CLR (Common Language Runtime) The Common Language Runtime (CLR) is programming that manages the execution of programs written in any of...

The Tech Platform
Oct 26, 2021


Liskov Substitution Principle in C#
The Liskov substitution principle (LSP) is a collection of guidelines for creating inheritance hierarchies in which a client can reliably...

The Tech Platform
Oct 25, 2021


Code Optimization in C Sharp (C#) Programming Language
What is Optimization? The word Optimization is derived from the Latin word Optimal which means the best. Optimization is a methodology of...

The Tech Platform
Oct 25, 2021


What is the difference between C# and F#
C# C# is a modern, general-purpose, object-oriented programming language developed by Microsoft and approved by European Computer...

The Tech Platform
Oct 12, 2021


Collections in C#
Collections: Collection classes are specialized classes for data storage and retrieval. These classes provide support for stacks, queues,...

The Tech Platform
Oct 9, 2021


C# | Assembly, EXE and DLL
For a beginner in the C# world, it will be very difficult to understand what it means. Let me put it in simple word, the assembly is...

The Tech Platform
Oct 4, 2021


Create a background job with Quartz.Net in .NET Core
There are processes you want to run frequently and automatically in the background of your main application. There are many libraries...

The Tech Platform
Sep 29, 2021


How To Utilize Interfaces In C#
An “Interface” is similar to an “Abstract Class” in the sense that they can both force implementations. While an Abstract Class can be...

The Tech Platform
Sep 27, 2021


Arguments in C#
In C#, arguments can be passed to parameters either by value or by reference. Passing by reference enables function members, methods,...

The Tech Platform
Sep 25, 2021
bottom of page
