C# vs Other Programming Languages

C# (pronounced C Sharp) Programming Language seems popular these days based on market trends. If you are working with .Net and ASP technologies, you are required to be familiar with the C# accurately. Here we will describes specifically what is similar, what is different, and the motivation behind the C# preference.

Read more

Basic Examples of C# Syntax

Basic Examples of C# Syntax

1. How to write on screen in C#. Console.WriteLine(“I have been studying C# for 4 weeks!”); This will appear on screen, and will disappear immediately. So, We are writing another statement. Console.WriteLine(“I have benn studying C# for 4 weeks!”); Console.ReadLine(); Now it will remain on screen, unless we press Enter key. Here we see that … Read more

Maths Table Printer in C#

Maths Table Printer in C#

The below is the Maths Table Printer Application that will print maths table up to 100000 range. Each table contains 10 rows. These charts are shown at a single UI for easy reference and to get the easy print out for the range specified instead of getting print out for each table. Click on the calculate button to calculate Multiplication Tables. Make sure you have connected installed it correctly.

Read more