C# Events
Events in C# are similar to exceptions in that they are raised (thrown) by objects and you can […]
Events in C# are similar to exceptions in that they are raised (thrown) by objects and you can […]
WPF is a UI (User Interface) framework that excels in displaying visual content. In previous frameworks, different UI […]
There are several layout controls to choose from when designing your Windows application. For example, if you are […]
This post discusses creating a Windows program using WPF without using XAML. Instead, you can use C# code […]
The post C# Introduction lists all of the C# series of posts we have at this site. This […]
Just to get started, the screen shot of our first program is shown here. It is our version […]
WPF stands for Windows Presentation Foundation. WPF is a graphical subsystem by Microsoft for rendering user interfaces in […]
Here is an example of polymorphism using our familiar Animal and Cow classes.
Let’s go back to the essence of polymorphism by looking at another text book called C#: A Beginner’s […]
The post C# Introduction lists all of the C# series of posts we have at this site. A […]
ArrayList of Custom Objects The last two lines shown above are interesting and require some explanation. First, review […]
CollectionMike ArrayList is from the System.Collections.ArrayList class. You do not need to specify a size of the collection […]