The .NET Framework's garbage collector manages the allocation and release of memory for your application. Each time you use the new operator to create an object, the runtime allocates memory for the object from the managed heap.
this means that if i do:
Form form;

it wont be placed in the managedheap?