top | item 38694308

(no title)

lambda_garden | 2 years ago

In C# you can create types where you control the layout and they are always stack allocated.

discuss

order

vrighter|2 years ago

This is not really true, as far as I know. You can control the memory layout of structs, they can be allocated on the stack, because they're value types, but not necessarily.

If you, for example, create an array of said struct type, the array's memory will be on the heap. And the structs will be stored in it. You can't assume a struct will be on the stack.

vrighter|2 years ago

nevermind... I was just out of date. C3 now has ref structs