C# Struct Examples - C# Tutorial: Dot Net Perls
Objects live on the managed heap. Structs often reside on the evaluation stack. Every program uses simple structs. All value types (int, bool, char) are structs. And custom structs, often not advisable, are also used. Example A struct uses syntax similar ...