Classes

Introduction

Next >

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

Page 1 of 20
Next >