everyone... I'm new to C# and such languages...
I've read two articles by Skeet, one about heap/stack, and other about reference types and value types. And I assume my question is simple, but it's not clarified to me after reading those articles.
Do reference types allocate new memory when passed to methods?
For example, if I pass a Form to a method, like
void myMethod(System.Windows.Forms.Form myForm)
{
...
}
Will there be more memory allocated to store all myForm data or will it hold just a reference to where myForm data is already allocated?
My worry is that if there's more memory allocated to store everything "appended" to myForm, soon the memory could become full, if myForm were a big form...
