by Janice Friedman | Oct 23, 2019 | Lessons, Tutorials
Image via flickrThe technology industry is has become the lead earner in almost every market. Every new product or technological advance in the past few years seems to be based in computer science. This has caused increased in computer science majors and other...
by Janice Friedman | Sep 6, 2019 | Lessons, Tutorials
image source: pexels We all remember the time we got that first taste of coding. We learned to type a few simple commands, or perhaps press a few buttons, and bam, like magic, the computer or device did exactly what we told it to do. So now, you're thinking it would...
by Janice Friedman | Sep 3, 2019 | Lessons, Sites
In software development, a good laptop can either make or break the job. Programming and coding require multitasking and the ability to compute millions of computations at a rapid rate. The usual consumer laptop won’t stand up to the job and can be a hindrance...
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...