top of page
Search


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


How to Learn new Programming Language faster
There are some steps you want to take to accelerate the learning process and increase your fluency in the programming language you are...

The Tech Platform
May 24, 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


Dependency Inversion Principle: How Google Developers write code
What is Dependency Inversion Principle? Dependency Inversion Principle corresponds to D among SOLI’D’ Principles. Its principle starts...

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...

The Tech Platform
May 20, 2022


Selenium with C#: How to start running Automated Tests
Automated testing has become an integral part of modern software development practices, allowing teams to enhance the efficiency,...

The Tech Platform
May 13, 2022


Difference Between String and string in C#
String (capital S) is a class in the .NET framework in the System namespace. The fully qualified name is System.String. Whereas, the...

The Tech Platform
May 9, 2022


Simple web site crawler using .NET Core and C#
This is an elementary Web site crawler written using C# on .NET Core . What do we mean by crawling a web site ? No! We are not indexing...

The Tech Platform
May 5, 2022


Exception Handling in C#
Exception Handling in C# is a process to handle runtime errors. We perform exception handling so that normal flow of the application can...

The Tech Platform
Apr 28, 2022


Parsing Text File By Span and Memory
We will write a method and the method will read all of the text inside the file then it will count the occurrences of the words. Like a...

The Tech Platform
Apr 28, 2022
bottom of page
