by Janice Friedman | Aug 6, 2019 | Tutorials
Ready to learn how to code? If you've chosen C# as the computer language you want to learn how to code with, then prepare yourself for a steep learning curve. While C#, a Microsoft-based general-purpose computer language, might be the most widely used computer code in...
by Janice Friedman | Jun 24, 2019 | Lessons
This lesson introduces you to C# Classes. We have included all the necessary aspects to provide an introduction to the topic. Our objectives with C# class are as follows: Implement Constructors. Know the difference between instance and static members. Understand...
by Janice Friedman | Jun 23, 2019 | Lessons
In Lesson 02, you learned about arrays and how they allow you to add and retrieve a collection of objects. Arrays are good for many tasks, but C# v2.0 introduced a new feature called generics. Among many benefits, one of the main ones is that generics allow us to...
by Janice Friedman | Jun 21, 2019 | Lessons
This lesson will teach you about C# struct. Our objectives are as follows: Understand the Purpose of structs. Implement a struct. Use a struct. What is a struct? A struct is a value type. To help understand the struct, it’s helpful to make a comparison with...
by Janice Friedman | Jun 20, 2019 | Lessons
This lesson introduces C# data types, operators and variables. Its goal is to meet the following objectives: Understand what a variable is. Familiarization with C# built-in types. Get an introduction to C# operators. Learn how to use Arrays. Variables and Types...