Select Page
C# If Statement: Control Selection in Lesson 03

C# If Statement: Control Selection in Lesson 03

In the last couple of lessons, every program you saw contained a limited amount of sequential steps and then stopped. There were no decisions you could make with the input, and the only constraint was to follow straight through to the end. The information in this...
C# Interface: What You Need to Know in Lesson 13

C# Interface: What You Need to Know in Lesson 13

This lesson teaches C# Interfaces. Our objectives are as follows: Understand the Purpose of Interfaces. Define an Interface. Use an Interface. Implement Interface Inheritance. An interface looks like a class but has no implementation. The only thing it contains is...