top of page
Search


Write a program to Check if a Value exists in an Enum in TypeScript
Enums or enumerations are a new data type supported in TypeScript. Most object-oriented languages like Java and C# use enums. This is now...

The Tech Platform
Jun 8, 2022


What is Impersonation ASP.NET?
Impersonation is a process of temporarily assuming the identity of another Windows account. This process does not give you the ability to...

The Tech Platform
Jun 8, 2022


How to handle 404 errors in ASP.NET Core MVC
In ASP.NET Core MVC, a 404 error (also known as HTTP error 404) occurs when the server cannot find the requested resource or page. This...

The Tech Platform
May 30, 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 28, 2022


How to Create Executable Applications in Python
With auto-py-to-exe ,a project by Brent Vollebregt we can easily create our own executable Python applications. Underneath the GUI is...

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 26, 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 21, 2022


How to add Image in Title bar in HTML?
The majority of websites add an icon or image logo in the title bar. The icon logo is also called a favicon. Favicon, which is also known...

The Tech Platform
May 21, 2022


How to Find Missing Number in a Sorted Array in Java?
Tips to find the missing number in a sorted array: Find the sum of n number using formula n=n*(n+1)/2 Find the sum of elements present in...

The Tech Platform
May 20, 2022
bottom of page
