How to Create a Tile Flooring Calculator WPF Application in C#

In my last tutorial, I showed you how to create a simple tax calculator with a GUI using WPF. In this tutorial, we are going to take some of what you learned in that tutorial and add to it when I will show you how to create a tile flooring calculator in C# using WPF. By the end of this tutorial, you will be able to create secondary windows and display them to the user.

Read more

How to Create a Simple Tax Calculator WPF Application in C#

In my last tutorial, I showed you how to create a simple tax calculator console application in C#. As promised, in this tutorial I will show you how to make that same tax calculator with a Graphical User Interface (GUI) and with a few feature enhancements. By the end of this tutorial, you will be able to run your tax calculator and calculate the grand total of a list of items with different tax rates for each item.

Read more

Creating a Simple Tax Calculator Console Application in C#

In this tutorial, I will show you how to create a simple tax calculator in C# using Visual Studio. I will show you how to get input from a user and do some calculations on that input. By the end of this tutorial, you will be able to run your tax calculator to calculate the grand total of an item given a specific tax rate.

Read more

Creating a C# Console Application in Visual Studio 2015

Console applications are great if you do not have to have a graphical user interface (GUI) for your application. They are also perfect for beginners just getting started with C# because they eliminate all of the distractions and allow you to write simple applications specifically tailored for learning or trying things out. In this tutorial, I am going to show you how to create an empty C# console application in Visual Studio 2015.

Read more