When to use objects

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I'm quite new to C# and to Object-Oriented Programming in general. I've managed to get my head around most of the concepts, but I'm still not always sure when to use objects.

Sometimes it's obvious when to make something into an object (such as database access code), but I tend to end up sticking most of my code in methods in the main object because I can't see how best to organise it into different objects.

Can anyone point me in the direction of some websites that cover designing my programs in OOP?

Cheers,
Burns
 
http://www.objectfaq.com/oofaq2/

http://www.geocities.com/tablizer/oopbad.htm

http://heim.ifi.uio.no/~kristen/FORSKNINGSDOK_MAPPE/F_OO_start.html



Burns said:
Hi,

I'm quite new to C# and to Object-Oriented Programming in general. I've
managed to get my head around most of the concepts, but I'm still not always
sure when to use objects.
Sometimes it's obvious when to make something into an object (such as
database access code), but I tend to end up sticking most of my code in
methods in the main object because I can't see how best to organise it into
different objects.
 
Back
Top