top of page
Search
The Tech Platform
Jun 1, 2022
When to Use Angular ControlValueAccessor and What’s the Difference Without It?
ControlValueAccessor provides the ability to use FormControl with any component that implements this interface. This gives a lot of...
The Tech Platform
Jun 1, 2022
Creating a Menu Bar UI with .NET MAUI Preview 14
In this blog, We will create a photo viewer and editor .NET MAUI desktop application and integrate the menu bar in it. Create photo...
The Tech Platform
May 28, 2022
The Best Programming Languages for Cloud Computing
Cloud computing is the on-demand availability of computer system resources, especially data storage and computing power, without direct...
The Tech Platform
May 28, 2022
.NET Core Best Practices
.NET Core is a free, open-source, general-purpose development platform maintained by Microsoft. It is a cross-platform framework that...
The Tech Platform
May 27, 2022
State Pattern : a simple implementation in C# dotnet core.
The State pattern allows an object to alter its behavior when its internal state changes. This is achieved by swapping internal state...
The Tech Platform
May 26, 2022
C# Convert Class
Convert class provides different methods to convert a base data type to another base data type. The base types supported by the Convert...
The Tech Platform
May 21, 2022
Object Literals in JavaScript to write complex conditions?
A JavaScript object literal is a concise way to create an object by specifying its properties and values using curly braces. It helps...
The Tech Platform
May 21, 2022
Difference Between Const vs Readonly vs Static in C#
Const: Constant fields or local variables must be assigned a value at the time of declaration and after that, they cannot be modified. By...
The Tech Platform
May 20, 2022
How to Find Highest Repeating Word from a File in Java?
In this Tutorial we will Learn to find the duplicate word which has occurred a maximum number of times in a file. You can also print the...
The Tech Platform
May 20, 2022
"Var" Keyword in C#
Var is a keyword, it is used to declare an implicit type variable, that specifies the type of a variable based on initial value. The var...
bottom of page