WPF Message BoxThe WPF message box is a type of dialog. It is easy to display a message box in […] January 6, 2019 in C# tagged message / dialog / modal / messagebox / box by Mike
C# Asynchronous Program 3In this example we have three blocking operations in a Windows Presentation Foundation (WPF) program. We want to […] January 6, 2019 in C# tagged C# Asynchronous by Mike
C# Asynchronous Program 2In this example we will display some of the html we downloaded in a message box in a […] January 6, 2019 in C# tagged C# Asynchronous by Mike
C# Asynchronous Program 1We are now going to demonstrate C# asynchronous programming with a Windows Presentation Foundation (WPF) program. We have […] January 5, 2019 in C# tagged download / asynchronous / await / html / C# Asynchronous by Mike
C# Asynchronous ProgrammingThe post C# Introduction lists all of the C# series of posts we have at this site. What […] January 5, 2019 in C# tagged asynchronous / synchronous / asynch / await / C# Asynchronous by Mike
C# Exception HandlingException handling is an advanced topic because there the things you need to understand in C# before you […] January 5, 2019 in C# tagged finally / IDisposable / unmanaged / error / exception / try / catch / handling / using / C# Exception Handling by Mike
C# Composition Part 2This post expands on the previous post C# Composition. We are going to expand our program from the […] January 4, 2019 in C# tagged auto / implemented / has-a / encapsulation / property / composition / C# Inheritance by Mike
C# Sealed ClassWhat is a sealed class? Sealed classes are used to restrict the inheritance feature of object oriented programming. […] January 1, 2019 in C# tagged class / sealed / C# Classes Intermediate by Mike
C# Lambda Part 3In this part 3 post we are going to link back to other examples of code that shows […] January 1, 2019 in C# tagged C# Lambda by Mike
C# TimeSpanTimeSpan represents a length of time, rather than an exact moment in time. The most simple way to […] January 1, 2019 in C# tagged properties / date / time / datetime / span / timespan / duration / C# Complex Types by Mike
C# Date and TimeThere is a type called DateTime that is defined in the System namespace that represents an exact moment […] January 1, 2019 in C# tagged OA / format / C# / date / time / datetime / sqlite / C# Complex Types by Mike
C# Inheritance Access ModifiersAccess modifiers are important to understand because we need to ensure that our classes are properly encapsulated. Remember […] December 30, 2018 in C# tagged C# Inheritance by Mike