Re: Understanding the differences between a class and struct in C# :
I find structs useful for structuring data in useful ways when simple arrays wont do the trick, but for most things a class is more versatile. No destructors is a nice touch for structs though...Writing less code is always a plus if you have limited needs.
|