C
christopher
gc class a
{
int Array __nogc[3];
int number;
};
where are this variable stored when the class object is
reference? I know the class will be on the managed heap.
but the variable aren't reference or pointer variable. so
are they created on the stack,clr heap, c++ traditional
heap?
{
int Array __nogc[3];
int number;
};
where are this variable stored when the class object is
reference? I know the class will be on the managed heap.
but the variable aren't reference or pointer variable. so
are they created on the stack,clr heap, c++ traditional
heap?