Visibility and Accessibility Modifiers

Introduction

Next >

Overview

Modifiers are a core concept of the C# programming language. You may not have realised that you've already been using them, but in this tutorial, we'll show you what they are and why they are used. As their name suggests, you can use modifiers to modify declarations in your code.

In this tutorial you will learn

  • What a modifier is
  • What are the different types of modifiers
  • Adding modifiers to classes
  • Adding modifiers to methods and properties
  • A special introduction to the async/await modifiers

In the previous tutorial, Inheritance, you learned

  • What is inheritance
  • A word on System.Object
  • How do I declare inheritance
  • Inherited type members (constructors, methods and properties)

Previous Tutorials in this Course

Page 1 of 18
Next >