top of page
Search
The Tech Platform
Nov 12, 2021
Dynamic Data Transfer Object in .Net Core
In c# to assemble property values from source to destination can be achieved by mapping source DTO properties to destination DTO class...
The Tech Platform
Nov 3, 2021
Demystifying Yield return in C#
Despite some concepts in program languages being not new, I think it is crucial to revisit and share knowledge on specific features of C#...
The Tech Platform
Nov 2, 2021
How to create a simple logger in C#
It’s easy to create a custom logging framework to log your .Net application’s errors and events to a flat file, a database, or the event...
The Tech Platform
Oct 29, 2021
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 26, 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 25, 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 12, 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 9, 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 7, 2021
Multithreading and parallelism with C # examples in the .NET platform.
What is multithreading? Multithreading— it is the ability of a platform (application) to perform multiple operations in one process. One...
bottom of page