We are in day four of our seven-day learning series. On day two, we discussed the typical C# program, and you understood how to compile and execute the program. We discussed the Main method and its use. We also discussed the reserved keywords of language C#, and then, we got an overview of classes and structures in C#. On day three, we discussed all the new features introduced in C#7.0.
In this chapter, the fundamentals of C# methods and properties will be explained, and we will also cover the concept of indexers in C#. The string manipulation discussed on day two will be extended through RegEx, and we will explain why it is powerful. File management will be covered along with some medium-level file system observers.
Today, we will cover C# classes in more depth. This chapter will cover the following topics:
- Modifiers
- Methods
- Properties
- Indexers...