When a method is defined, the set of parameters that are in scope for the method are known by the compiler, called a maxstack
. This hints at the amount of memory to allocate for the method.
This could be the source of the extra time - memory allocation by the CLR.
Adding more braces doesn't actually add more parameters to maxstack
. Its scopes the whole method. Scope is more of a logical grouping, than being implemented by the CLR to release memory.
With your question on GC, I don't believe this is the root-cause of the problem. GC is ran by a separate thread when required. It could be the GC, but I seriously doubt it in your case.