Structs in C#
Struct Examples and Tricks in C# - actually worthwhile reading.
I’d known that structs can be used to group some related items together (to aid understanding, reduce bugs etc) and I knew that they can be an aid for performance (less of an overhead compared to objects). But I didn’t really know why .. this article is a pretty clear introduction to the advantages of structs.