C# Class Object InitializersWith object constructors we can initialize an object and put it into an early state. There is also […] May 15, 2018 in C# tagged object / class / initializer / C# Classes by Mike
C# DirectoriesWorking with files and directories is perhaps one of the easier things to do in C#. Because files […] May 13, 2018 in C# tagged directory / directories / folder / folders / C# Files Directories by Mike
C# FilesWorking with files and directories is perhaps one of the easier things to do in C#. Because files […] May 13, 2018 in C# tagged file / files / C# Files Directories by Mike
C# Type InferenceIn C# 3, the keyword var was introduced. What does var do? What is type inference? Let’s take […] May 12, 2018 in C# tagged type / var / inference / anonymous by Mike
C# Classes Theory 2Before we can understand classes, we need to have a good knowledge of the basic building blocks. Encapsulation […] May 5, 2018 in C# tagged class / classes / theory / oop / pillars / C# Classes by Mike
C# Class Library Projects Part 2In this post we provide the C# source code for a very simple example of a class library, […] July 2, 2016 in C# tagged library / project / C# / class / C# Class Library by Mike
C# Class Library Projects IntroductionA project that contains only classes (and other type definitions if necessary) but no entry point is called […] July 2, 2016 in C# tagged C# / class / library / project / C# Class Library by Mike
C# Calling Another Program In a C# ProgramOne C# console program can call another C# console program. The calling program can pass in arguments to […] June 12, 2016 in C# by Mike
C# Execute a Stored ProcedureHow do you execute a SQL Server stored procedure from within a C# program? The Microsoft Developer Network […] June 12, 2016 in C# tagged procedure by Mike
C# XAML ButtonsIn XAML, there are several controls that derive from ButtonBase: Button, RepeatButton, ToggleButton, CheckBox and RadioButton. More ButtonBase-derived […] May 13, 2016 in C# tagged button by Mike
C# as OperatorYou can use the as operator to perform certain types of conversions between compatible reference types or nullable […] May 9, 2016 in C# by Mike
C# XAML Introduction Part 4 Object Names Part 2This is a continuation of Object Names Part 1. This example allows the user to view a custom […] May 1, 2016 in C# by Mike