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?
|
feedback
|
|
Yes, you can. The pointer to the class member variable is stored 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:
| ||||
|
feedback
|
|
It's probably not a recommended practice to do so: see http://msdn.microsoft.com/en-us/library/ms229017(VS.85).aspx | |||
|
feedback
|
|
The class content gets stored on the heap. A reference to the class (which is almost the same as a pointer) gets stored with the struct content. Where the struct content is stored depends on whether it's a local variable, method parameter, or member of a class, and whether it's been boxed or captured by a closure. | |||
|
feedback
|