For a given class in C#, you may need different ways to pass arguments to it. You can do this by overloading a constructor. Overloaded constructors enable you to initialize objects of the same class in different ways - for example, by passing in different numbers of initial parameters. ... Read more
Bradley Wells
Hi, I write C# and .NET tutorials. Follow me @bradwellsb
Suppose you want to get the number of days between two dates, or the number of seconds between two times. In C#, you can use the
DateTime.Subtract
method to compute the difference between dates and times. ... Read moreYou will make a menu-driven program in this tutorial. Using a
while
loop, you will learn how to add a menu to a C# console application. This technique helps your users navigate your app, and it enables you to create more robust C# programs. ... Read moreIn this tutorial, we will write a string manipulation example to trim all whitespace from a string in C#. We will use a helper method to remove all whitespace and print the modified result to the console. ... Read more
In this tutorial, we will write a string manipulation program to reverse any string in C#. Using a char array and helper methods, we will be able to print a string backwards. ... Read more
This tutorial will explain the difference between a While loop and a Do While loop in C#. You will learn when to use each type of iterative statement by working through practical examples. ... Read more