InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between A Struct And A Class? |
|
Answer» Structs are value-type variables and are THUS saved on the STACK, additional overhead but FASTER retrieval. Another DIFFERENCE is that structs cannot inherit. Structs are value-type variables and are thus saved on the stack, additional overhead but faster retrieval. Another difference is that structs cannot inherit. |
|