Is it possible in C# to have a Struct with a member variable which is a Class type? If so, where does the information get stored, on the Stack, the Heap, or both?
|
|
|
|
|
|
|
Yes, you can. The pointer to the class member variable is stored on the stack with the rest of the struct's values, and the class instance's data is stored on the heap. Structs can also contain class definitions as members (inner classes). Here's some really useless code that at least compiles and runs to show that it's possible:
|
|||
|
|
|
|
It's probably not a recommended practice to do so: see http://msdn.microsoft.com/en-us/library/ms229017(VS.85).aspx |
||
|
|
|
|
struct goes on the stack, class on the heap. The reference to the class is stored with the struct on the stack. |
||
|
|
