Classes
Introduction
Overview
Classes are a fundamental concept of Object Orientated Programming (OOP) languages. Classes are designed to encapsulate your methods and properties, allowing you to group common values and operations into singular conceptual blocks.
In this tutorial you will learn
- What a class is
- How to declare an instance of a class
- Adding methods to a class
- Adding properties to a class
- Adding a constructor to a class
In the previous tutorial, Variables and Standard Types, you learned
- What a variable is
- What a type is
- How to declare a variable of a specific types
- The standard types available to the .NET framework
Previous Tutorials in this Course
- Introduction to C# Beginner Course
- Hello World
- Using the Console
- Variables and Standard Types
Page 1 of 20