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