Simple example of structs
- In C#
- struct is the value type data type
- It can contain a parameterized constructor, static constructor, constants, fields, methods, properties, indexers, operators, events, and nested types.
- All the value types are allocated on stack memory.
- Struct has limited features.