by Janice Friedman | Oct 14, 2019 | Tutorials
If you’re wondering how to search and replace string with C#, then you’re at the right place. Our aim with this tutorial is to give you all the information that you need on how to do this, but we’ve also tried to make it simple and get to the point...
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...