Intro to Object Orientated Programming Part 3 - Objects and Methods

PlausiblyDamp

Administrator
Joined
Sep 4, 2002
Messages
6,155
Location
Lancashire, UK
User Rank
*Expert*
Guide to Object Orientated code in .Net

This is a continuation of the series started in here and is preceded by this thread

Introduction
In the previous articles we have looked at a simple class that contains data and functionality. The data is simply stored as variables within the class for simplicity.
The functionality of the class is exposed through three routines the Balance property and the Credit / Debit functions, in this article we will look at a bit of terminology and see how we can take advantage of some more .Net features.

Class A class is a piece of code that defines the functionality of an aspect of our code, in the previous articles we have a simple class called BankAccount; this defines how a BankAccount works in our system
 

Attachments

Last edited by a moderator:
Back
Top