top of page
Search
The Tech Platform
Mar 11, 2021
Implicit Operator in C#
In C# language (and others) there is plenty of scenarios where a Mapping process is necessary between different classes. It can be...
The Tech Platform
Mar 9, 2021
Program to Convert String To Float In C#
In this article, we will write a C# program to convert String to Float using float.Parse() method class Program { static void...
The Tech Platform
Mar 9, 2021
Program to Convert Float To String In C#
In this article, we will write a C# program to convert Float to String using float.ToString() method class Program { static void...
The Tech Platform
Mar 9, 2021
Convert string to Integer in C#
In this article, we will write a C# program to convert string to Integer using Convert.ToInt32() method class Program { static void...
The Tech Platform
Mar 9, 2021
Program to Convert Integer to String in C#
In this article, we will write a C# program to convert Integer to String using ToString() method class Program { static void...
The Tech Platform
Mar 8, 2021
Fluent Builder Pattern — C#
It’s very common to have complex objects in our solutions. Objects that have multiple fields and each field is difficult to build. Who is...
The Tech Platform
Mar 6, 2021
Program to merge two sorted linked list in C#.
In this article, we will discuss how to merge two sorted linked list. This is a frequently asked interview question. This can be solved...
The Tech Platform
Mar 6, 2021
Find node in Linked List in C#
Lets have a look at the implementation in C#. using System; using System.Collections.Generic; class Program { static void Main() { // //...
The Tech Platform
Mar 5, 2021
10 different Number Pattern Programs in C#
Pattern 1: class pyramid { public static void Main() { int num, space; while (true) { Console.Write("Enter a number between 1 to 9 : ");...
The Tech Platform
Mar 5, 2021
6 Different Star Pattern Programs in C#
Patterns are the repeated decorative design. There is a simple code to write patterns in C#. We can write code to print different types...
bottom of page