Hi Elziko!
Think of a structure as a lightweight class.
It's a value type (memory comes from the stack), whereas a class is a reference type (the pointer to the class comes from the stack, but memory for the guts of the class come from the heap).
While you can add methods and such to a structure, I myself don't see that as a good use. I prefer to think of a structure as a simple place to hold a small amount of data. If I need to manage a large amount of data (like, for a customer), or need nested data (Invoice + it's detail lines), then I'd use a class.
Chip H.