Jan 18, 2017 · 1 min read
Good question. Structs are always copied, classes are references. Structs is better in some cases and objects in some. In this it wont matter. But lets say we want to check if our person is already added to a list. It would be much simpler to check if the reference is our list no matter what if that person was married and changed their lastname.
Here is a good explaination:
http://stackoverflow.com/questions/24232799/why-choose-struct-over-class/24232845
Hope it helps!
Regards
//Mikael
