+ 1
Structs
When should i use structs why not always use class?
2 Respostas
+ 3
In C# you should use classes when dealing with complex structures and data, while structs should be used for more simple structures. This is my personal preference, but other than that the two should be relatively the same
+ 1
Sirius thanks bro..