Does structs in c# have a fixed size? So thats why the following code :
struct Person
{
    Person child;
}
Will cause infinite cycling problems? Or because struct types contain their proper value and not a reference?
Does structs in c# have a fixed size? So thats why the following code :
struct Person
{
    Person child;
}
Will cause infinite cycling problems? Or because struct types contain their proper value and not a reference?